[백준 19238] 스타트 택시


문제설명

문제

스타트링크가 “스타트 택시”라는 이름의 택시 사업을 시작했다. 스타트 택시는 특이하게도 손님을 도착지로 데려다줄 때마다 연료가 충전되고, 연료가 바닥나면 그 날의 업무가 끝난다.

택시 기사 최백준은 오늘 M명의 승객을 태우는 것이 목표이다. 백준이 활동할 영역은 N×N 크기의 격자로 나타낼 수 있고, 각 칸은 비어 있거나 벽이 놓여 있다. 택시가 빈칸에 있을 때, 상하좌우로 인접한 빈칸 중 하나로 이동할 수 있다. 알고리즘 경력이 많은 백준은 특정 위치로 이동할 때 항상 최단경로로만 이동한다.

M명의 승객은 빈칸 중 하나에 서 있으며, 다른 빈칸 중 하나로 이동하려고 한다. 여러 승객이 같이 탑승하는 경우는 없다. 따라서 백준은 한 승객을 태워 목적지로 이동시키는 일을 M번 반복해야 한다. 각 승객은 스스로 움직이지 않으며, 출발지에서만 택시에 탈 수 있고, 목적지에서만 택시에서 내릴 수 있다.

백준이 태울 승객을 고를 때는 현재 위치에서 최단거리가 가장 짧은 승객을 고른다. 그런 승객이 여러 명이면 그중 행 번호가 가장 작은 승객을, 그런 승객도 여러 명이면 그중 열 번호가 가장 작은 승객을 고른다. 택시와 승객이 같은 위치에 서 있으면 그 승객까지의 최단거리는 0이다. 연료는 한 칸 이동할 때마다 1만큼 소모된다. 한 승객을 목적지로 성공적으로 이동시키면, 그 승객을 태워 이동하면서 소모한 연료 양의 두 배가 충전된다. 이동하는 도중에 연료가 바닥나면 이동에 실패하고, 그 날의 업무가 끝난다. 승객을 목적지로 이동시킨 동시에 연료가 바닥나는 경우는 실패한 것으로 간주하지 않는다.

img

<그림 1>

<그림 1>은 택시가 활동할 영역의 지도를 나타내며, 택시와 세 명의 승객의 출발지와 목적지가 표시되어 있다. 택시의 현재 연료 양은 15이다. 현재 택시에서 각 손님까지의 최단거리는 각각 9, 6, 7이므로, 택시는 2번 승객의 출발지로 이동한다.

img<그림 2>img<그림 3>
  

<그림 2>는 택시가 2번 승객의 출발지로 가는 경로를, <그림 3>은 2번 승객의 출발지에서 목적지로 가는 경로를 나타낸다. 목적지로 이동할 때까지 소비한 연료는 6이고, 이동하고 나서 12가 충전되므로 남은 연료의 양은 15이다. 이제 택시에서 각 손님까지의 최단거리는 둘 다 7이므로, 택시는 둘 중 행 번호가 더 작은 1번 승객의 출발지로 이동한다.

img<그림 4>img<그림 5>
  

<그림 4>와 <그림 5>는 택시가 1번 승객을 태워 목적지로 이동시키는 경로를 나타낸다. 남은 연료의 양은 15 - 7 - 7 + 7×2 = 15이다.

img<그림 6>img<그림 7>
  

<그림 6>과 <그림 7>은 택시가 3번 승객을 태워 목적지로 이동시키는 경로를 나타낸다. 최종적으로 남은 연료의 양은 15 - 5 - 4 + 4×2 = 14이다.

모든 승객을 성공적으로 데려다줄 수 있는지 알아내고, 데려다줄 수 있을 경우 최종적으로 남는 연료의 양을 출력하는 프로그램을 작성하시오.

입력

첫 줄에 N, M, 그리고 초기 연료의 양이 주어진다. (2 ≤ N ≤ 20, 1 ≤ M ≤ N2, 1 ≤ 초기 연료 ≤ 500,000) 연료는 무한히 많이 담을 수 있기 때문에, 초기 연료의 양을 넘어서 충전될 수도 있다.

다음 줄부터 N개의 줄에 걸쳐 백준이 활동할 영역의 지도가 주어진다. 0은 빈칸, 1은 벽을 나타낸다.

다음 줄에는 백준이 운전을 시작하는 칸의 행 번호와 열 번호가 주어진다. 행과 열 번호는 1 이상 N 이하의 자연수이고, 운전을 시작하는 칸은 빈칸이다.

그다음 줄부터 M개의 줄에 걸쳐 각 승객의 출발지의 행과 열 번호, 그리고 목적지의 행과 열 번호가 주어진다. 모든 출발지와 목적지는 빈칸이고, 모든 출발지는 서로 다르며, 각 손님의 출발지와 목적지는 다르다.

출력

모든 손님을 이동시키고 연료를 충전했을 때 남은 연료의 양을 출력한다. 단, 이동 도중에 연료가 바닥나서 다음 출발지나 목적지로 이동할 수 없으면 -1을 출력한다. 모든 손님을 이동시킬 수 없는 경우에도 -1을 출력한다.

예제 입력 1 복사

6 3 15
0 0 1 0 0 0
0 0 1 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 1 0
0 0 0 1 0 0
6 5
2 2 5 6
5 4 1 6
4 2 3 5

예제 출력 1 복사

14

예제 입력 2 복사

6 3 13
0 0 1 0 0 0
0 0 1 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 1 0
0 0 0 1 0 0
6 5
2 2 5 6
5 4 1 6
4 2 3 5

예제 출력 2 복사

-1

예제 입력 3 복사

6 3 100
0 0 1 0 0 0
0 0 1 0 0 0
0 0 0 1 0 0
0 0 0 1 0 0
0 0 0 0 1 0
0 0 0 1 0 0
6 5
2 2 5 6
5 4 1 6
4 2 3 5

예제 출력 3 복사

-1

내가 생각하는 문제 풀이 포인트

  1. 현재 택시 위치로 부터 다음에 태울 손님찾기
  2. 손님 목적지 까지 이동시키기

bfs 를 활용한다.

코드

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;

public class Baekjoon19238 {
    static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    static int N, M, fuel;
    static int[][] map;
    static Passenger[] passengers;
    static Taxi taxi;
    static Queue<Integer>[][] passengerMap;
    static int[] dirRow = {-1, 0, 1, 0};
    static int[] dirCol = {0, -1, 0, 1};

    public static void main(String[] args) throws IOException {
        StringTokenizer st = new StringTokenizer(br.readLine());
        N = Integer.parseInt(st.nextToken());
        M = Integer.parseInt(st.nextToken());
        fuel = Integer.parseInt(st.nextToken());
        map = new int[N + 1][N + 1];
        passengers = new Passenger[M+1];
        passengerMap  = new LinkedList[N+1][N+1];
        for (int i = 1; i <= N; i++) {
            st = new StringTokenizer(br.readLine());
            for (int j = 1; j <= N; j++) {
                passengerMap[i][j] = new LinkedList<>();
                map[i][j] = Integer.parseInt(st.nextToken());
                if (map[i][j] == 1) {
                    map[i][j] = -1;
                }
            }
        }
        st = new StringTokenizer(br.readLine());
        int startRow = Integer.parseInt(st.nextToken());
        int startCol = Integer.parseInt(st.nextToken());
        taxi = new Taxi(startRow, startCol, 0);
        for (int i = 1; i <= M; i++) {
            st = new StringTokenizer(br.readLine());
            int sr = Integer.parseInt(st.nextToken());
            int sc = Integer.parseInt(st.nextToken());
            int dr = Integer.parseInt(st.nextToken());
            int dc = Integer.parseInt(st.nextToken());
            passengerMap[sr][sc].add(i);
            passengers[i] = new Passenger(sr, sc, dr, dc,i);
        }
        for(int i=0;i<M;i++){
            int beforeTime = taxi.time;
            if(!searchPassenger()){
                System.out.println(-1);
                return;
            }
            int srcTime = taxi.time;
            //System.out.println("passenger taxi : "+taxi.row+","+taxi.col+","+(taxi.time-beforeTime)+ "<"+fuel+">");
            int idx= passengerMap[taxi.row][taxi.col].poll();
            if(!goDest(passengers[idx].dr,passengers[idx].dc)){
                System.out.println(-1);
                return;
            }
           // System.out.println("dest taxi : "+taxi.row+","+taxi.col+","+(taxi.time-beforeTime)+ "<"+fuel+">");

            fuel -=(taxi.time - beforeTime);

            if(fuel<0){
                System.out.println(-1);
                return;
            }
            else{
                fuel += (2*(taxi.time - srcTime));
            }
        }
        System.out.println(fuel);
        return;
    }

    private static boolean goDest(int dr, int dc) {
        Queue<Taxi> q = new LinkedList<>();
        q.offer(taxi);
        boolean[][] visited = new boolean[N + 1][N + 1];
        visited[taxi.row][taxi.col] = true;
        while(!q.isEmpty()){
            Taxi cur = q.poll();
            if(cur.row == dr && cur.col==dc){
                taxi = cur;
                return true;
            }
            for (int i = 0; i < 4; i++) {
                int nextRow = cur.row + dirRow[i];
                int nextCol = cur.col + dirCol[i];
                if (nextRow < 1 || nextCol < 1 || nextRow > N || nextCol > N || visited[nextRow][nextCol] || map[nextRow][nextCol]==-1)
                    continue;
                visited[nextRow][nextCol] = true;
                q.offer(new Taxi(nextRow,nextCol,cur.time+1));
            }

        }
        return false;
    }

    private static boolean searchPassenger() {
        ArrayList<Taxi> candidatePassengers = new ArrayList<>();
        Queue<Taxi> q = new LinkedList<>();
        boolean[][] visited = new boolean[N + 1][N + 1];
        q.offer(taxi);
        visited[taxi.row][taxi.col] = true;
        while (!q.isEmpty()) {
            Taxi cur = q.poll();
            if(!candidatePassengers.isEmpty()&& candidatePassengers.get(0).time <cur.time)
                continue;
            if(!passengerMap[cur.row][cur.col].isEmpty()){
                candidatePassengers.add(cur);
                continue;
            }
            for (int i = 0; i < 4; i++) {
                int nextRow = cur.row + dirRow[i];
                int nextCol = cur.col + dirCol[i];
                if (nextRow < 1 || nextCol < 1 || nextRow > N || nextCol > N || visited[nextRow][nextCol] || map[nextRow][nextCol]==-1)
                    continue;
                visited[nextRow][nextCol] = true;
                q.offer(new Taxi(nextRow,nextCol,cur.time+1));
            }
        }
        if(candidatePassengers.isEmpty())
            return false;
        Collections.sort(candidatePassengers);
        taxi = candidatePassengers.get(0);
        return true;
    }



    static class Passenger {
        int sr, sc, dr, dc,idx;

        public Passenger(int sr, int sc, int dr, int dc,int idx) {
            this.sr = sr;
            this.sc = sc;
            this.dr = dr;
            this.dc = dc;
            this.idx = idx;
        }
    }

    static class Taxi implements Comparable<Taxi>{
        int row, col, time;

        public Taxi(int row, int col, int time) {
            this.row = row;
            this.col = col;
            this.time = time;
        }

        @Override
        public int compareTo(Taxi o) {
            if(this.time == o.time){
                if(this.row == o.row){
                    return this.col - o.col;
                }
                return this.row - o.row;
            }
            return this.time - o.time;
        }
    }
}

느낀점

문제자체에 신경쓸 엣지 케이스는 적고 직관적인 풀이가 가능한 문제였다.

문제 링크

on Baekjoon, Java, Algorithm, 역량테스트, 삼성기출