-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
114 lines (97 loc) Β· 3.29 KB
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
package Queue.P3190;
import java.io.*;
import java.util.*;
public class Main {
static int N, K, L;
static int[][] board;
static Map<Integer, Character> rotate = new HashMap<>();
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/Queue/P3190/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
N = Integer.parseInt(br.readLine());
K = Integer.parseInt(br.readLine());
board = new int[N][N];
for (int i = 0; i < K; i++) {
StringTokenizer st = new StringTokenizer(br.readLine());
int row = Integer.parseInt(st.nextToken()) - 1;
int col = Integer.parseInt(st.nextToken()) - 1;
board[row][col] = 1;
}
L = Integer.parseInt(br.readLine());
for (int i = 0; i < L; i++) {
StringTokenizer st = new StringTokenizer(br.readLine());
int time = Integer.parseInt(st.nextToken());
char dir = st.nextToken().charAt(0);
rotate.put(time, dir);
}
Deque<Position> snake = new ArrayDeque<>();
snake.add(new Position(0, 0, 'R'));
board[0][0] = 2;
int time = 0;
while (true) {
Position head = snake.peekLast();
assert head != null;
if (rotate.containsKey(time)) head.rotate(rotate.get(time));
time ++;
Position to = head.move();
if (!isValidPath(to.i, to.j) || board[to.i][to.j] == 2)
break;
if (board[to.i][to.j] == 0) {
Position tail = snake.poll();
assert tail != null;
board[tail.i][tail.j] = 0;
}
snake.addLast(to);
board[to.i][to.j] = 2;
}
System.out.println(time);
}
static boolean isValidPath(int i, int j) {
return 0 <= i && i < N && 0 <= j && j < N;
}
}
class Position {
int i;
int j;
char d;
public Position(int i, int j, char d) {
this.i = i;
this.j = j;
this.d = d;
}
Position move() {
switch (this.d) {
case 'L': return new Position(this.i, this.j - 1, this.d);
case 'R': return new Position(this.i, this.j + 1, this.d);
case 'U': return new Position(this.i - 1, this.j, this.d);
case 'D': return new Position(this.i + 1, this.j, this.d);
default : return new Position(this.i, this.j, this.d);
}
}
void rotate(char dir) {
switch (this.d) {
case 'L':
if (dir == 'L') this.d = 'D';
else if (dir == 'D') this.d = 'U';
break;
case 'R':
if (dir == 'L') this.d = 'U';
else if (dir == 'D') this.d = 'D';
break;
case 'U':
if (dir == 'L') this.d = 'L';
else if (dir == 'D') this.d = 'R';
break;
case 'D':
if (dir == 'L') this.d = 'R';
else if (dir == 'D') this.d = 'L';
break;
default:
break;
}
}
@Override
public String toString() {
return "Position{" + "i=" + i + ", j=" + j + ", d=" + d + '}';
}
}