재현이는 주변을 살펴보던 중 체스판과 말을 이용해서 새로운 게임을 만들기로 했다. 새로운 게임은 크기가 N×N인 체스판에서 진행되고, 사용하는 말의 개수는 K개이다. 말은 원판모양이고, 하나의 말 위에 다른 말을 올릴 수 있다. 체스판의 각 칸은 흰색, 빨간색, 파란색 중 하나로 색칠되어있다.
게임은 체스판 위에 말 K개를 놓고 시작한다. 말은 1번부터 K번까지 번호가 매겨져 있고, 이동 방향도 미리 정해져 있다. 이동 방향은 위, 아래, 왼쪽, 오른쪽 4가지 중 하나이다.
턴 한 번은 1번 말부터 K번 말까지 순서대로 이동시키는 것이다. 한 말이 이동할 때 위에 올려져 있는 말도 함께 이동하며, 가장 아래에 있는 말만 이동할 수 있다. 말의 이동 방향에 있는 칸에 따라서 말의 이동이 다르며 아래와 같다. 턴이 진행되던 중에 말이 4개 이상 쌓이는 순간 게임이 종료된다.
다음은 크기가 4×4인 체스판 위에 말이 4개 있는 경우이다.
첫 번째 턴은 다음과 같이 진행된다.
두 번째 턴은 다음과 같이 진행된다.
체스판의 크기와 말의 위치, 이동 방향이 모두 주어졌을 때, 게임이 종료되는 턴의 번호를 구해보자.
첫째 줄에 체스판의 크기 N, 말의 개수 K가 주어진다. 둘째 줄부터 N개의 줄에 체스판의 정보가 주어진다. 체스판의 정보는 정수로 이루어져 있고, 각 정수는 칸의 색을 의미한다. 0은 흰색, 1은 빨간색, 2는 파란색이다.
다음 K개의 줄에 말의 정보가 1번 말부터 순서대로 주어진다. 말의 정보는 세 개의 정수로 이루어져 있고, 순서대로 행, 열의 번호, 이동 방향이다. 행과 열의 번호는 1부터 시작하고, 이동 방향은 4보다 작거나 같은 자연수이고 1부터 순서대로 →, ←, ↑, ↓의 의미를 갖는다.
같은 칸에 말이 두 개 이상 있는 경우는 입력으로 주어지지 않는다.
게임이 종료되는 턴의 번호를 출력한다. 그 값이 1,000보다 크거나 절대로 게임이 종료되지 않는 경우에는 -1을 출력한다.
4 4
0 0 2 0
0 0 1 0
0 0 1 2
0 2 0 0
2 1 1
3 2 3
2 2 1
4 1 2
-1
4 4
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
1 1 1
1 2 1
1 3 1
1 4 1
1
4 4
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
1 1 1
1 2 1
1 3 1
2 4 3
1
4 4
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
1 1 1
1 2 1
1 3 1
3 3 3
2
4 4
0 0 2 0
0 0 1 0
0 0 1 2
0 2 0 0
2 1 1
3 2 3
2 2 1
4 1 3
8
6 10
0 1 2 0 1 1
1 2 0 1 1 0
2 1 0 1 1 0
1 0 1 1 0 2
2 0 1 2 0 1
0 2 1 0 2 1
1 1 1
2 2 2
3 3 4
4 4 1
5 5 3
6 6 2
1 6 3
6 1 2
2 4 3
4 2 1
9
이 문제는 반복문과 HashMap을 이용해서 풀 수 있었다. 먼저 풀었었던 새로운 게임2 와 같은 방식이다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashMap;
public class Main {
static ArrayList<Integer>[][] list;
static HashMap<Integer, Pair> hm = new HashMap<>();
static int[][] map;
static int N;
static int K;
static int[] dx = {0, 0, -1, 1};
static int[] dy = {1, -1, 0, 0}; //0: → 1: ← 2: ↑ 3: ↓
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String[] str = br.readLine().split(" ");
N = Integer.parseInt(str[0]);
K = Integer.parseInt(str[1]);
list = new ArrayList[N+1][N+1];
map = new int[N+1][N+1];
for(int i=1; i<=N; i++) {
for(int j=1; j<=N; j++)
list[i][j] = new ArrayList<>();
}
for(int i=1; i<=N; i++) {
String[] str1 = br.readLine().split(" ");
for(int j=1; j<=N; j++)
map[i][j] = Integer.parseInt(str1[j-1]);
}
for(int i=1; i<=K; i++) {
String[] input = br.readLine().split(" ");
int x = Integer.parseInt(input[0]);
int y = Integer.parseInt(input[1]);
int d = Integer.parseInt(input[2]);
hm.put(i, new Pair(x, y, d));
list[x][y].add(i);
}
solution();
/*for(int key : hm.keySet()){
Pair value = hm.get(key);
System.out.println(key+" : "+value.x+", "+value.y+", "+value.d);
}*/
}
static void solution() {
int t = 1;
while(true) {
if(t>1000) {
System.out.println(-1);
return ;
}
for(int i=1; i<=K; i++) {
Pair p = hm.get(i);
int X = p.x+dx[p.d-1];
int Y = p.y+dy[p.d-1];
int index = list[p.x][p.y].indexOf(i);
if(index!=0)
continue;
if(X<1 || X>N || Y<1 || Y>N || map[X][Y]==2) {
int nx = 0;
int ny = 0;
if(p.d%2==0) {
nx = p.x+dx[p.d-2];
ny = p.y+dy[p.d-2];
}
else {
nx = p.x+dx[p.d];
ny = p.y+dy[p.d];
}
if(p.d==1 || p.d==3)
hm.put(i, new Pair(p.x, p.y, p.d+1));
else
hm.put(i, new Pair(p.x, p.y, p.d-1));
if(nx<1 || nx>N || ny<1 || ny>N || map[nx][ny]==2)
continue;
--i;
}
else {
if(map[X][Y]==0) {
while(list[p.x][p.y].size()>0) {
int k = list[p.x][p.y].remove(0);
Pair temp = hm.get(k);
list[X][Y].add(k);
hm.put(k, new Pair(X, Y, temp.d));
}
}
else {
while(list[p.x][p.y].size()>0) {
int k = list[p.x][p.y].remove(list[p.x][p.y].size()-1);
Pair temp = hm.get(k);
list[X][Y].add(k);
hm.put(k, new Pair(X, Y, temp.d));
}
}
if(list[X][Y].size()>=4) {
System.out.println(t);
return;
}
}
}
t++;
}
}
static class Pair {
int x;
int y;
int d;
public Pair(int x, int y, int d) {
this.x = x;
this.y = y;
this.d = d;
}
}
}