結果
問題 | No.1323 うしらずSwap |
ユーザー | maine_honzuki |
提出日時 | 2020-12-20 00:35:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,558 bytes |
コンパイル時間 | 2,277 ms |
コンパイル使用メモリ | 217,192 KB |
実行使用メモリ | 13,184 KB |
最終ジャッジ日時 | 2024-09-21 11:01:21 |
合計ジャッジ時間 | 7,326 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 62 ms
12,800 KB |
testcase_17 | AC | 74 ms
12,672 KB |
testcase_18 | AC | 60 ms
12,928 KB |
testcase_19 | AC | 76 ms
12,928 KB |
testcase_20 | AC | 61 ms
12,800 KB |
testcase_21 | AC | 59 ms
12,928 KB |
testcase_22 | AC | 74 ms
12,800 KB |
testcase_23 | AC | 59 ms
12,800 KB |
testcase_24 | AC | 71 ms
12,800 KB |
testcase_25 | AC | 59 ms
12,800 KB |
testcase_26 | AC | 57 ms
12,928 KB |
testcase_27 | AC | 59 ms
12,928 KB |
testcase_28 | AC | 59 ms
13,056 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 106 ms
13,056 KB |
testcase_34 | AC | 100 ms
12,928 KB |
testcase_35 | AC | 97 ms
13,184 KB |
testcase_36 | AC | 93 ms
13,056 KB |
testcase_37 | AC | 93 ms
13,056 KB |
testcase_38 | AC | 88 ms
12,800 KB |
testcase_39 | AC | 91 ms
13,056 KB |
testcase_40 | AC | 90 ms
13,056 KB |
testcase_41 | AC | 90 ms
12,928 KB |
testcase_42 | AC | 90 ms
13,184 KB |
testcase_43 | AC | 53 ms
13,056 KB |
testcase_44 | AC | 58 ms
12,928 KB |
testcase_45 | AC | 59 ms
12,928 KB |
testcase_46 | AC | 56 ms
13,056 KB |
testcase_47 | AC | 52 ms
13,184 KB |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | AC | 2 ms
5,376 KB |
testcase_60 | AC | 2 ms
5,376 KB |
testcase_61 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int H, W, ax, ay, bx, by; vector<string> S; int main() { cin >> H >> W >> ax >> ay >> bx >> by; ax--; ay--; bx--; by--; S.resize(H); for (int i = 0; i < H; i++) { cin >> S[i]; for (auto& c : S[i]) if (c == '#') c = 1; else c = 0; } const int dx[] = {1, 0, -1, 0}; const int dy[] = {0, -1, 0, 1}; queue<pair<int, pair<int, int>>> que; que.push(make_pair(0, make_pair(ax, ay))); vector<vector<int>> dist(H, vector<int>(W, -1)); dist[ax][ay] = 0; que.push(make_pair(0, make_pair(ax, ay))); while (!que.empty()) { auto p = que.front(); que.pop(); int d = p.first, now_x = p.second.first, now_y = p.second.second; if (now_x == bx && now_y == by) continue; for (int i = 0; i < 4; i++) { int nxt_x = now_x + dx[i], nxt_y = now_y + dy[i]; if (S[nxt_x][nxt_y] == 1) { continue; } if (dist[nxt_x][nxt_y] == -1) { dist[nxt_x][nxt_y] = d + 1; que.push(make_pair(d + 1, make_pair(nxt_x, nxt_y))); } } } if (dist[bx][by] == -1) { cout << -1 << endl; return 0; } bool flag1 = false, flag2 = false; int now_x = bx, now_y = by, now_dist = dist[bx][by]; while (!(now_x == ax && now_y == ay)) { int cnt1 = 0, cnt2 = 0, tmp_x, tmp_y; for (int i = 0; i < 4; i++) { int nxt_x = now_x + dx[i], nxt_y = now_y + dy[i]; if (dist[nxt_x][nxt_y] == now_dist - 1) { cnt1++; tmp_x = nxt_x; tmp_y = nxt_y; } if (S[nxt_x][nxt_y] == 0) cnt2++; } if (cnt1 >= 2) flag1 = true; if (now_dist != dist[bx][by]) if (cnt2 >= 3) flag2 = true; now_x = tmp_x; now_y = tmp_y; now_dist--; } if (flag1) { cout << dist[bx][by] * 2 << endl; } else if (flag2) { cout << dist[bx][by] * 2 + 2 << endl; } else { int ans = -1; vector<int> d; for (int i = 0; i < 4; i++) { int tmp = dist[bx + dx[i]][by + dy[i]]; if (tmp != -1) d.emplace_back(tmp); } sort(d.begin(), d.end()); if (d.size() >= 2) { ans = d[0] + d[1] + 2; } cout << ans << endl; } }