-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path18b-ram-run.cpp
58 lines (54 loc) · 1.32 KB
/
18b-ram-run.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
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#ifdef _DEBUG
#include "utils/debug.h"
#else
#define debug(...) 0
#endif
const int dx[] = {-1, 0, 1, 0};
const int dy[] = {0, 1, 0, -1};
int main() {
cin.tie(0)->sync_with_stdio(0);
string line;
vector<pair<int, int>> pos;
while (getline(cin, line)) {
istringstream iss(line);
int x, y; char c; iss >> y >> c >> x;
pos.push_back({x, y});
}
// const int MN = 6 + 1;
const int MN = 70 + 1;
int N = MN, M = MN;
auto in = [&](int i, int j) { return i >= 0 && j >= 0 && i < N && j < M; };
auto ok = [&](int blocked) {
vector<vector<int>> g(N, vector<int>(M));
for (int i = 0; i < blocked; ++i) {
auto [x, y] = pos[i];
g[x][y] = 1;
}
vector<vector<int>> dist(N, vector<int>(M, 1e9));
dist[0][0] = 0;
queue<pair<int, int>> q;
q.push({0, 0});
while (!q.empty()) {
auto [x, y] = q.front(); q.pop();
for (int dir = 0; dir < 4; ++dir) {
int nx = x + dx[dir], ny = y + dy[dir];
if (!in(nx, ny)) continue;
if (g[nx][ny]) continue;
if (dist[x][y] + 1 < dist[nx][ny]) {
dist[nx][ny] = dist[x][y] + 1;
q.push({nx, ny});
}
}
}
return dist[N-1][M-1] < 1e9;
};
for (int i = 0; i < (int)pos.size(); ++i) {
if (ok(i+1)) continue;
debug(i);
cout << pos[i].second << "," << pos[i].first << '\n';
break;
}
}