結果
問題 | No.1323 うしらずSwap |
ユーザー | Luzhiled |
提出日時 | 2020-12-10 18:19:49 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,740 bytes |
コンパイル時間 | 2,232 ms |
コンパイル使用メモリ | 213,436 KB |
実行使用メモリ | 296,064 KB |
最終ジャッジ日時 | 2024-09-21 10:39:50 |
合計ジャッジ時間 | 42,685 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 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 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
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 | 502 ms
213,504 KB |
testcase_17 | AC | 1,390 ms
213,248 KB |
testcase_18 | AC | 496 ms
213,760 KB |
testcase_19 | AC | 1,454 ms
213,248 KB |
testcase_20 | AC | 500 ms
213,248 KB |
testcase_21 | AC | 452 ms
213,248 KB |
testcase_22 | AC | 1,234 ms
213,504 KB |
testcase_23 | AC | 449 ms
213,120 KB |
testcase_24 | AC | 1,233 ms
213,376 KB |
testcase_25 | AC | 457 ms
213,248 KB |
testcase_26 | AC | 401 ms
213,632 KB |
testcase_27 | AC | 404 ms
213,760 KB |
testcase_28 | AC | 837 ms
213,376 KB |
testcase_29 | AC | 402 ms
213,632 KB |
testcase_30 | AC | 899 ms
213,376 KB |
testcase_31 | AC | 395 ms
213,120 KB |
testcase_32 | AC | 955 ms
213,504 KB |
testcase_33 | AC | 1,574 ms
252,288 KB |
testcase_34 | AC | 1,707 ms
267,392 KB |
testcase_35 | AC | 1,828 ms
274,944 KB |
testcase_36 | AC | 1,809 ms
279,808 KB |
testcase_37 | AC | 1,858 ms
281,728 KB |
testcase_38 | AC | 2,077 ms
292,480 KB |
testcase_39 | AC | 2,039 ms
294,144 KB |
testcase_40 | AC | 2,147 ms
294,912 KB |
testcase_41 | AC | 2,201 ms
296,064 KB |
testcase_42 | AC | 1,917 ms
295,680 KB |
testcase_43 | AC | 374 ms
163,840 KB |
testcase_44 | AC | 579 ms
171,648 KB |
testcase_45 | AC | 581 ms
186,496 KB |
testcase_46 | AC | 577 ms
171,776 KB |
testcase_47 | AC | 449 ms
171,904 KB |
testcase_48 | AC | 381 ms
163,968 KB |
testcase_49 | AC | 570 ms
171,648 KB |
testcase_50 | AC | 349 ms
158,080 KB |
testcase_51 | AC | 151 ms
131,840 KB |
testcase_52 | AC | 232 ms
145,408 KB |
testcase_53 | AC | 577 ms
172,160 KB |
testcase_54 | AC | 235 ms
145,664 KB |
testcase_55 | WA | - |
testcase_56 | AC | 191 ms
139,136 KB |
testcase_57 | AC | 729 ms
186,112 KB |
testcase_58 | AC | 3 ms
5,376 KB |
testcase_59 | AC | 3 ms
5,376 KB |
testcase_60 | AC | 3 ms
5,376 KB |
testcase_61 | AC | 3 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int h, w; cin >> h >> w; auto to_v = [w](int y, int x) { return y * w + x; }; int Ya, Xa, Yb, Xb; cin >> Ya >> Xa >> Yb >> Xb; int a = to_v(Ya - 1, Xa - 1); int b = to_v(Yb - 1, Xb - 1); vector< string > ss(h); for (auto &s : ss) cin >> s; int V = h * w; vector< vector< int > > G(V); constexpr int dy[] = {-1, 0, 1, 0}; constexpr int dx[] = {0, 1, 0, -1}; for (int y = 1; y < h - 1; y++) { for (int x = 1; x < w - 1; x++) { if (ss[y][x] == '#') continue; int v = to_v(y, x); for (int i = 0; i < 4; i++) { int ny = y + dy[i]; int nx = x + dx[i]; if (ss[ny][nx] == '#') continue; int u = to_v(ny, nx); G[v].emplace_back(u); } } } constexpr int inf = 1001001001; auto bfs = [&](int s, int t) { vector< vector< int > > res(V); res[s].emplace_back(0); struct T { int v, pre, cost; bool f; T(int v_, int pre_, int cost_, bool f_) : v(v_), pre(pre_), cost(cost_), f(f_) {} }; queue< T > que; que.emplace(s, -1, 0, false); while (not que.empty()) { auto [v, pre, cost, f] = que.front(); que.pop(); for (auto &u : G[v]) { if (u == pre) continue; if ((int)res[u].size() == 2) continue; if ((int)res[u].size() == 1 and f) continue; res[u].emplace_back(cost + 1); que.emplace(u, v, cost + 1, f or (u == t)); } } return res; }; cerr << "st bfs" << endl; auto da = bfs(a, b); auto db = bfs(b, a); cerr << "ed bfs" << endl; int ans = inf; if ((int)da[b].size() == 0) { ans = -1; } if ((int)db[a].size() == 2) { ans = min(ans, da[b][0] + db[a][1]); } if ((int)da[b].size() == 2) { ans = min(ans, db[a][0] + da[b][1]); } auto find_fromv = [&](int y, int x, const vector< vector< int > > &dist) { int f = to_v(y, x); for (int i = 0; i < 4; i++) { int u = to_v(y + dy[i], x + dx[i]); if ((int)dist[u].size() == 0) continue; if (dist[u][0] > dist[f][0]) continue; f = u; } return f; }; cerr << "uku" << endl; for (int y = 1; y < h - 1; y++) { for (int x = 1; x < w - 1; x++) { int v = to_v(y, x); if ((int)da[v].size() == 0) continue; if ((int)db[v].size() == 0) continue; if ((int)G[v].size() < 3) continue; int af = find_fromv(y, x, da); int bf = find_fromv(y, x, db); int cost = 2 * (da[v][0] + db[v][0]); if (af == bf or af == v or bf == v) { cost += 4; } else { cost += 2; } ans = min(ans, cost); } } if (ans == inf) { ans = -1; } cout << ans << endl; }