結果
問題 | No.1323 うしらずSwap |
ユーザー | tokusakurai |
提出日時 | 2020-12-20 22:44:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,603 bytes |
コンパイル時間 | 2,525 ms |
コンパイル使用メモリ | 221,484 KB |
実行使用メモリ | 26,752 KB |
最終ジャッジ日時 | 2024-09-21 12:20:17 |
合計ジャッジ時間 | 7,451 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 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 | WA | - |
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 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 39 ms
26,496 KB |
testcase_17 | AC | 68 ms
26,496 KB |
testcase_18 | AC | 39 ms
26,624 KB |
testcase_19 | AC | 68 ms
26,496 KB |
testcase_20 | AC | 39 ms
26,496 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 57 ms
26,496 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 115 ms
26,240 KB |
testcase_34 | AC | 111 ms
26,496 KB |
testcase_35 | AC | 111 ms
26,368 KB |
testcase_36 | AC | 104 ms
26,496 KB |
testcase_37 | AC | 104 ms
26,496 KB |
testcase_38 | AC | 104 ms
26,240 KB |
testcase_39 | AC | 105 ms
26,496 KB |
testcase_40 | AC | 107 ms
26,496 KB |
testcase_41 | AC | 107 ms
26,496 KB |
testcase_42 | AC | 100 ms
26,368 KB |
testcase_43 | AC | 36 ms
26,368 KB |
testcase_44 | AC | 52 ms
26,368 KB |
testcase_45 | AC | 45 ms
26,496 KB |
testcase_46 | AC | 52 ms
26,496 KB |
testcase_47 | AC | 38 ms
26,496 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 | 3 ms
6,940 KB |
testcase_60 | AC | 2 ms
6,940 KB |
testcase_61 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for(int i = 0; i < n; i++) #define rep2(i, x, n) for(int i = x; i <= n; i++) #define rep3(i, x, n) for(int i = x; i >= n; i--) #define each(e, v) for(auto &e: v) #define pb push_back #define eb emplace_back #define all(x) x.begin(), x.end() #define rall(x) x.rbegin(), x.rend() #define sz(x) (int)x.size() using ll = long long; using pii = pair<int, int>; using pil = pair<int, ll>; using pli = pair<ll, int>; using pll = pair<ll, ll>; const int MOD = 1000000007; //const int MOD = 998244353; const int inf = (1<<30)-1; const ll INF = (1LL<<60)-1; template<typename T> bool chmax(T &x, const T &y) {return (x < y)? (x = y, true) : false;}; template<typename T> bool chmin(T &x, const T &y) {return (x > y)? (x = y, true) : false;}; struct io_setup{ io_setup(){ ios_base::sync_with_stdio(false); cin.tie(NULL); cout << fixed << setprecision(15); } } io_setup; int main(){ int H, W; cin >> H >> W; int sx, sy, tx, ty; cin >> sx >> sy >> tx >> ty; sx--, sy--, tx--, ty--; vector<string> S(H); rep(i, H) cin >> S[i]; queue<pii> que; vector<vector<int>> d(H, vector<int>(W, inf)); vector<vector<pii>> pre(H, vector<pii>(W)); que.emplace(sx, sy); d[sx][sy] = 0; vector<int> dx = {1, 0, -1, 0}, dy = {0, 1, 0, -1}; vector<vector<bool>> tw(H, vector<bool>(W, false)); while(!que.empty()){ auto [i, j] = que.front(); que.pop(); rep(k, 4){ int ni = i+dx[k], nj = j+dy[k]; if(S[ni][nj] == '#') continue; if(chmin(d[ni][nj], d[i][j]+1)){ que.emplace(ni, nj); pre[ni][nj] = pii(i, j); } else if(d[ni][nj] == d[i][j]+1){ tw[ni][nj] = true; } } } if(d[tx][ty] == inf) {cout << -1 << '\n'; return 0;} bool flag = false; int px = tx, py = ty; while(true){ if(tw[px][py]) {cout << 2*d[tx][ty] << '\n'; return 0;} auto[ax, ay] = pre[px][py]; px = ax, py = ay; if(px == sx && py == sy) break; int deg = 0; rep(k, 4){ if(S[px+dx[k]][py+dy[k]] == '.') deg++; } if(deg >= 3) flag = true; } int deg = 0; rep(k, 4){ if(S[sx+dx[k]][sy+dy[k]] == '.') deg++; } if(deg >= 2) flag = true; deg = 0; rep(k, 4){ if(S[tx+dx[k]][ty+dy[k]] == '.') deg++; } if(deg >= 2) flag = true; if(!flag) cout << -1 << '\n'; else cout << d[tx][ty]*2+2 << '\n'; }