-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy path35C. Fire Again.cpp
52 lines (40 loc) · 1.06 KB
/
35C. Fire Again.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
#include <stdio.h>
#include <queue>
using namespace std;
pair<int, int> res;
int n, m, k;
int dx[] = {0, 0, 1, -1};
int dy[] = {1, -1, 0, 0};
bool vis[2001][2001];
queue<pair<int, int> > q;
void BFS() {
while(!q.empty()) {
int x, y, nx, ny;
x = q.front().first;
y = q.front().second;
q.pop();
if(vis[x][y]) continue;
vis[x][y] = true;
res.first = x;
res.second = y;
for(int i = 0; i < 4; i++) {
nx = x + dx[i];
ny = y + dy[i];
if(nx >= 0 && nx < n && ny >= 0 && ny < m && !vis[nx][ny])
q.push(make_pair(nx, ny));
}
}
}
int main() {
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
int a, b;
scanf("%d%d%d", &n, &m, &k);
while(k--) {
scanf("%d%d", &a, &b);
a--; b--;
q.push(make_pair(a, b));
}
BFS();
printf("%d %d", res.first + 1, res.second + 1);
}