結果
問題 | No.2096 Rage With Our Friends |
ユーザー | 沙耶花 |
提出日時 | 2022-10-07 22:07:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,922 bytes |
コンパイル時間 | 4,424 ms |
コンパイル使用メモリ | 269,600 KB |
実行使用メモリ | 107,996 KB |
最終ジャッジ日時 | 2024-06-12 18:39:58 |
合計ジャッジ時間 | 10,616 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | AC | 363 ms
42,620 KB |
testcase_12 | AC | 1,297 ms
107,996 KB |
testcase_13 | AC | 135 ms
42,380 KB |
testcase_14 | WA | - |
testcase_15 | AC | 370 ms
42,568 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 300 ms
42,364 KB |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 778 ms
42,496 KB |
testcase_23 | WA | - |
testcase_24 | AC | 448 ms
26,880 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 80 ms
9,216 KB |
ソースコード
#include <stdio.h> #include <atcoder/all> #include <bits/stdc++.h> using namespace std; using namespace atcoder; using mint = modint998244353; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000001 #define Inf64 4000000000000000001 long long d[2005][2005]; int main(){ int N,M; cin>>N>>M; int sx,sy,gx,gy; cin>>sx>>sy>>gx>>gy; sx--,sy--,gx--,gy--; vector<string> s(N); rep(i,N)cin>>s[i]; rep(i,N){ rep(j,M){ d[i][j] = Inf64; } } using P = pair<long long,pair<int,int>>; priority_queue<P,vector<P>,greater<P>> Q; Q.emplace(0,make_pair(sx,sy)); d[sx][sy] = 0; while(Q.size()>0){ long long D = Q.top().first; int x = Q.top().second.first; int y = Q.top().second.second; Q.pop(); if(D!=d[x][y])continue; if(s[x][y]=='.'){ if(x!=N-1&&y!=0){ int xx = x+1,yy = y-1; if(s[xx][yy]=='.'){ long long DD = D; if(d[xx][yy]>DD){ d[xx][yy] = DD; Q.emplace(DD,make_pair(xx,yy)); } } } if(x!=N-1&&y!=M-1){ int xx = x+1,yy = y+1; if(s[xx][yy]=='.'){ long long DD = D; if(d[xx][yy]>DD){ d[xx][yy] = DD; Q.emplace(DD,make_pair(xx,yy)); } } } for(int k=-2;k<=2;k+=2){ int xx = 1 + x/2,yy = y+k; if(y<0||y>=M)continue; long long DD = D; if(d[xx][yy]>DD){ d[xx][yy] = DD; Q.emplace(DD,make_pair(xx,yy)); } } for(int k=-2;k<=2;k+=2){ int xx = min(N-1,1 + x),yy = y+k; if(y<0||y>=M)continue; long long DD = D+1; if(d[xx][yy]>DD){ d[xx][yy] = DD; Q.emplace(DD,make_pair(xx,yy)); } } } if(x!=0){ int xx = x-1,yy = y; long long DD = D; if(d[xx][yy]>DD){ d[xx][yy] = DD; Q.emplace(DD,make_pair(xx,yy)); } } } /* rep(i,N){ rep(j,M){ cout<<d[i][j]<<','; } cout<<endl; } */ long long ans = d[gx][gy]; if(ans==Inf64)ans = -1; cout<<ans<<endl; return 0; }