-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path16173_점프왕_쩰리스몰.cpp
87 lines (71 loc) · 1.75 KB
/
16173_점프왕_쩰리스몰.cpp
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
#include <iostream>
#include <vector>
#include <stack>
#include <utility>
using namespace std;
int flag = 0;
int x_move[2] = {1, 0}; // ➡️⬇️
int y_move[2] = {0, 1};
// void BFS(int n, vector<vector<int>> &v, int py, int px)
// {
// for (int i = 0; i < 2; i++)
// {
// int cx = px + (x_move[i] * v[py][px]);
// int cy = py + (y_move[i] * v[py][px]);
// if (cx >= 0 && cx < n && cy >= 0 && cy < n)
// {
// if (v[cy][cx] == -1)
// {
// flag = 1;
// return;
// }
// BFS(n, v, cy, cx);
// }
// }
// return;
// }
int main()
{
int n; // 게임 구역의 크기
cin >> n;
vector<vector<int>> v(n, vector<int>(n)); // 게임판의 구역(맵)
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
cin >> v[i][j];
}
}
stack<pair<int, int>> s;
s.push(make_pair(0, 0)); // 첫 번째 좌표 스택에 넣어주기
while (!s.empty())
{
int y = s.top().first;
int x = s.top().second;
s.pop();
int d = v[y][x];
for (int i = 0; i < 2; i++)
{
int cx = x + (x_move[i] * d);
int cy = y + (y_move[i] * d);
if (cx >= 0 && cx < n && cy >= 0 && cy < n)
{
if (v[cy][cx] == -1)
{
cout << "HaruHaru";
return 0;
}
else if (v[cy][cx] == 0)
{
continue;
}
else
{
s.push(make_pair(cy, cx));
}
}
}
}
cout << "Hing";
return 0;
}