結果
問題 | No.2843 Birthday Present Struggle |
ユーザー | norikame |
提出日時 | 2024-08-23 21:54:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 25 ms / 2,000 ms |
コード長 | 1,881 bytes |
コンパイル時間 | 2,578 ms |
コンパイル使用メモリ | 218,540 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-08-23 21:55:18 |
合計ジャッジ時間 | 4,463 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 4 ms
6,940 KB |
testcase_03 | AC | 23 ms
6,940 KB |
testcase_04 | AC | 5 ms
6,944 KB |
testcase_05 | AC | 10 ms
6,944 KB |
testcase_06 | AC | 3 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 20 ms
6,944 KB |
testcase_09 | AC | 12 ms
6,940 KB |
testcase_10 | AC | 14 ms
6,944 KB |
testcase_11 | AC | 5 ms
6,944 KB |
testcase_12 | AC | 4 ms
6,940 KB |
testcase_13 | AC | 12 ms
6,940 KB |
testcase_14 | AC | 8 ms
6,940 KB |
testcase_15 | AC | 7 ms
6,940 KB |
testcase_16 | AC | 16 ms
6,944 KB |
testcase_17 | AC | 14 ms
6,940 KB |
testcase_18 | AC | 5 ms
6,940 KB |
testcase_19 | AC | 13 ms
6,940 KB |
testcase_20 | AC | 25 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 11 ms
6,940 KB |
testcase_23 | AC | 23 ms
6,944 KB |
testcase_24 | AC | 22 ms
6,940 KB |
testcase_25 | AC | 5 ms
6,940 KB |
testcase_26 | AC | 5 ms
6,944 KB |
testcase_27 | AC | 7 ms
6,944 KB |
testcase_28 | AC | 10 ms
6,940 KB |
testcase_29 | AC | 4 ms
6,940 KB |
testcase_30 | AC | 8 ms
6,944 KB |
testcase_31 | AC | 5 ms
6,940 KB |
testcase_32 | AC | 19 ms
6,940 KB |
testcase_33 | AC | 25 ms
6,940 KB |
testcase_34 | AC | 16 ms
6,944 KB |
testcase_35 | AC | 16 ms
6,944 KB |
ソースコード
// #include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i, n) for (int i=0; i<(int)(n); ++(i)) #define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i)) #define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i)) #define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i)) #define all(x) (x).begin(), (x).end() const int INF = (int)(1e9); const vector<int> dx = { -1, 0, 1, 0 }, dy = { 0, 1, 0, -1 }; int main() { int n, ax, ay, bx, by, cx, cy; cin >> n >> ax >> ay >> bx >> by >> cx >> cy; --ax; --ay; --bx; --by; --cx; --cy; vector<string> d(n, string(n, '.')); auto is_connected = [&](int sx, int sy, int gx, int gy) -> bool { vector<vector<bool>> visited(n, vector<bool>(n)); queue<pair<int, int>> que; visited[sx][sy] = true; que.emplace(sx, sy); while (!que.empty()) { auto [vx, vy] = que.front(); que.pop(); rep(i2, 4) { int nx = vx + dx[i2], ny = vy + dy[i2]; if (nx<0 || nx>=n || ny<0 || ny>=n || d[nx][ny] != '.' || visited[nx][ny]) continue; visited[nx][ny] = true; que.emplace(nx, ny); } } return visited[gx][gy]; }; vector<pair<int, int>> res; rep3r(i, 1, 1<<4) { vector<pair<int, int>> vlst; rep(j, 4) if (i>>j&1) { int tx = cx + dx[j], ty = cy + dy[j]; d[tx][ty] = '#'; vlst.emplace_back(tx+1, ty+1); } if (!is_connected(cx, cy, ax, ay) && is_connected(bx, by, ax, ay)) { res = vlst; break; } rep(j, 4) { int tx = cx + dx[j], ty = cy + dy[j]; d[tx][ty] = '.'; } } int m = res.size(); cout << m << endl; rep(i, m) cout << res[i].first << ' ' << res[i].second << endl; return 0; }