Algorithm/그래프 탐색

BOJ#1726 로봇

밤이2209 2017. 4. 12. 15:33

BOJ#1726 로봇


* 문제


* 풀이

BFS 탐색 문제입니다. 어려운 개념이 필요하거나 그런건 아닌데 문제 조건이 조금 복잡합니다.
얼마나 꼼꼼하게 빨리 풀수 있는지가 관건인 듯 합니다.


* 나의 코드

https://github.com/stack07142/BOJ/blob/master/BOJ%231726_Robot/src/Main.java


import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;

/**
* BOJ#1726 로봇
* https://www.acmicpc.net/problem/1726
*/

public class Main {

static final int START = 0;
static final int END = 1;

static final int WEST = 0;
static final int NORTH = 1;
static final int EAST = 2;
static final int SOUTH = 3;

static final int[] dRow = {0, -1, 0, 1};
static final int[] dCol = {-1, 0, 1, 0};

public static void main(String[] args) throws IOException {

int nRow, nCol;
Point[] point = new Point[2];
int[][] map;
boolean[][][] discovered;

// input
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());

nRow = Integer.parseInt(st.nextToken());
nCol = Integer.parseInt(st.nextToken());

map = new int[nRow + 1][nCol + 1];
discovered = new boolean[nRow + 1][nCol + 1][4];

for (int i = 0; i < nRow + 1; i++) {
for (int j = 0; j < nCol + 1; j++) {

Arrays.fill(discovered[i][j], false);
}
}

for (int i = 1; i < nRow + 1; i++) {

st = new StringTokenizer(br.readLine());
for (int j = 1; j < nCol + 1; j++) {

map[i][j] = Integer.parseInt(st.nextToken());
}
}

for (int i = 0; i < 2; i++) {

st = new StringTokenizer(br.readLine());

int s = Integer.parseInt(st.nextToken());
int e = Integer.parseInt(st.nextToken());
int d = Integer.parseInt(st.nextToken());

// 동쪽이 1, 서쪽이 2, 남쪽이 3, 북쪽이 4
// 동쪽이 2, 서쪽이 0, 남쪽이 3, 북쪽이 2
point[i] = new Point(s, e, d == 1 ? EAST : d == 2 ? WEST : d == 4 ? NORTH : SOUTH);
}

// solve
Queue<Point> queue = new LinkedList<Point>();
int step = -1;

queue.add(point[START]);
discovered[point[START].row][point[START].col][point[START].dir] = true;

while (!queue.isEmpty()) {

step++;

int size = queue.size();
for (int i = 0; i < size; i++) {

Point u = queue.poll();

if (u.row == point[END].row && u.col == point[END].col) {

if (u.dir == point[END].dir) {

System.out.println(step);
return;
}
}

// 명령 1. Go k
// k는 1, 2 또는 3 일 수 있다.현재 향하고 있는 방향으로 k칸 만큼 움직인다.
for (int j = 1; j <= 3; j++) {

int nextRow = u.row + j * dRow[u.dir];
int nextCol = u.col + j * dCol[u.dir];

if (nextRow <= 0 || nextRow > nRow || nextCol <= 0 || nextCol > nCol) continue;
if (discovered[nextRow][nextCol][u.dir]) continue;
if (map[nextRow][nextCol] == 1) break;

queue.add(new Point(nextRow, nextCol, u.dir));
discovered[nextRow][nextCol][u.dir] = true;
}

// 명령 2. Turn dir
// dir은 left 또는 right 이며, 각각 왼쪽 또는 오른쪽으로 90° 회전한다.
int nextDir = u.dir + 1 > 3 ? 0 : u.dir + 1;

if (discovered[u.row][u.col][nextDir]) continue;

queue.add(new Point(u.row, u.col, nextDir));
discovered[u.row][u.col][nextDir] = true;

nextDir = u.dir - 1 < 0 ? 3 : u.dir - 1;
if (discovered[u.row][u.col][nextDir]) continue;

queue.add(new Point(u.row, u.col, nextDir));
discovered[u.row][u.col][nextDir] = true;

}
}
}
}

class Point {

int row, col;
int dir;

Point(int row, int col, int dir) {

this.row = row;
this.col = col;
this.dir = dir;
}
}




'Algorithm > 그래프 탐색' 카테고리의 다른 글

BOJ#1194 달이 차오른다, 가자.  (0) 2017.04.13
BOJ#5427 불  (1) 2017.04.12
BOJ#7569 토마토  (0) 2017.04.11
BOJ#2667 단지번호붙이기  (0) 2017.04.10
BOJ#2589 보물섬  (0) 2017.04.10