[BOJ] 17837 - 새로운 게임 2
구현문제에서 가장 중요한 것은 문제를 제대로 읽고 이해하는 것이다. 반대로 구현문제에서 틀리는 이유 중 문제를 잘못 이해해서가 큰 비중을 차지하고 있다는.. 조심하고 침착하게 풀자ㅠㅠ
소스코드
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
#include <iostream>
#include <algorithm>
#include <vector>
#include <functional>
#include <map>
#include <queue>
#include <string.h>
#include <stack>
#define MAX = 987654321
using namespace std;
typedef pair<int, int> PII;
const int dr[5] = { 0, 0, 0, -1, 1 }, dc[5] = { 0, 1, -1, 0, 0 };
int n, dir[15], mp[15][15];
PII point[15];
stack<int> s[15][15];
bool is_in_range(int x, int y) {
return x > 0 && x <= n && y > 0 && y <= n;
}
int main(void) {
int k, a, b, c;
scanf("%d %d", &n, &k);
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
scanf("%d", mp[i] + j);
}
}
for (int i = 1; i <= k; i++) {
scanf("%d %d %d", &a, &b, &c);
point[i] = { a, b };
s[a][b].push(i);
dir[i] = c;
}
for (int turn = 1; turn <= 1000; turn++) {
for (int i = 1; i <= k; i++) {
int nowX = point[i].first, nowY = point[i].second;
int x = nowX + dr[dir[i]], y = nowY + dc[dir[i]];
if (!is_in_range(x, y) || mp[x][y] == 2) { // 파란색일 경우
dir[i] += dir[i] % 2 ? 1 : -1;
int nx = nowX + dr[dir[i]], ny = nowY + dc[dir[i]];
if (!is_in_range(nx, ny) || mp[nx][ny] == 2) continue;
x = nx; y = ny;
}
vector<int> tmp;
while (!s[nowX][nowY].empty() && s[nowX][nowY].top() != i) {
tmp.push_back(s[nowX][nowY].top());
s[nowX][nowY].pop();
}
if (!s[nowX][nowY].empty() && s[nowX][nowY].top() == i) {
tmp.push_back(s[nowX][nowY].top());
s[nowX][nowY].pop();
}
if (s[x][y].size() + tmp.size() >= 4) {
printf("%d", turn);
return 0;
}
if (mp[x][y] == 1) {
for (int now : tmp) {
s[x][y].push(now);
point[now] = { x,y };
}
}
else {
for (int j = tmp.size() - 1; j >= 0; j--) {
s[x][y].push(tmp[j]);
point[tmp[j]] = { x,y };
}
}
}
}
printf("-1");
return 0;
}
This post is licensed under CC BY 4.0 by the author.
Comments powered by Disqus.