[JAVA] SWEA 9280 - 진용이네 주차타워

hyng·2022년 1월 29일
0

SWEA

목록 보기
21/78

solution

  • parkingArr로 각 차량이 주차한 주차 공간 번호를 저장해두고 나중에 차가 주차장을 나갈 때 주차 요금 정산에 해당 정보를 이용한다.
  • waitQueue는 만약 현재 빈 주차 공간이 없는데 차가 주차장에 들어올 경우 다른 차가 나올 때까지 주차할 수 없으므로 차량이 대기하는 용으로 사용한다.
  • emptyQueue는 우선순위 큐를 사용해서 주차 공간이 번호가 낮은 순으로 정렬되도록 하고 차가 주차장에 들어올 때 해당 큐에서 poll을 해서 주차공간을 할당해 준다.
    만약 차가 주차장을 나갈 경우엔 다시 주차 공간 번호를 emtpyQueue에 넣어서 주차공간을 반납한다.

code

import java.util.*;
class Solution
{
	public static void main(String args[]) throws Exception
	{
		Scanner sc = new Scanner(System.in);
        StringBuffer sb = new StringBuffer();


        int T = sc.nextInt();
        for(int tc=1; tc<=T; tc++){
            sb.append("#").append(tc).append(" ");

            int N = sc.nextInt();
            int M = sc.nextInt();

            HashMap<Integer, Integer> spaceMap = new HashMap<>(); // 주차 공간마다 따로 책정된 단위 무게당 금액 
            HashMap<Integer, Integer> carMap = new HashMap<>(); // 차량의 무게
            int parkingArr[] = new int[M+1]; // 자동차가 주차한 주차 공간 번호
            int totalProfit = 0;
            for(int i=0; i<N; i++){
                spaceMap.put(i+1, sc.nextInt());
            }
            for(int i=0; i<M; i++){
                carMap.put(i+1, sc.nextInt());
            }
            
            Queue<Integer> waitQueue = new LinkedList<>(); // 주차 공간이 없을 때, 차량이 대기하는 큐
            PriorityQueue<Integer> emptyQueue = new PriorityQueue<>(); // 빈 주차 공간을 가지고 있는 큐

            for(int i=1; i<=N; i++){
                emptyQueue.add(i);
            }
            for(int i=0; i<2*M; i++){
                int n = sc.nextInt();
                if(n > 0){
                    //출입
                    if(emptyQueue.isEmpty()){
                        //빈 공간이 없음.
                        waitQueue.add(n);
                    }else{
                        int parkingIndex = emptyQueue.poll();
                        parkingArr[n] = parkingIndex;
                    }
                }else{
                    //퇴장
                    int carIndex = n * -1;
                    int parkingIndex = parkingArr[carIndex];
                    totalProfit += carMap.get(carIndex) * spaceMap.get(parkingIndex);
                    emptyQueue.add(parkingIndex);
                    
                    //대기큐에 있는 차량 출입
                    if(!waitQueue.isEmpty()){
                        parkingIndex = emptyQueue.poll();
                        carIndex = waitQueue.poll();
                        parkingArr[carIndex] = parkingIndex;
                    }

                }
            }
            sb.append(totalProfit).append("\n");
        }
        System.out.println(sb);
	}
}
profile
공부하고 알게 된 내용을 기록하는 블로그

0개의 댓글