結果
問題 | No.424 立体迷路 |
ユーザー | dnish |
提出日時 | 2018-06-04 19:17:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,750 bytes |
コンパイル時間 | 843 ms |
コンパイル使用メモリ | 89,332 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 07:16:06 |
合計ジャッジ時間 | 1,472 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 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 | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
ソースコード
#include <algorithm> #include <cmath> #include <cstdio> #include <cstring> #include <deque> #include <iostream> #include <map> #include <queue> #include <set> #include <stack> #include <string> #include <utility> #include <vector> #define p(s) cout<<(s)<<endl #define REP(i,n,N) for(int i=n;i<N;i++) #define RREP(i,n,N) for(int i=N-1;i>=n;i--) #define CK(n,a,b) ((a)<=(n)&&(n)<(b)) #define F first #define S second typedef long long ll; using namespace std; const ll mod = 1e9+7; int H, W; int sx, sy, gx, gy; string field[55]; bool used[55][55]; int dx[4] = {1,0,-1,0}; int dy[4] = {0,1,0,-1}; int main() { cin>>H>>W; cin>>sy>>sx>>gy>>gx; sx--;sy--;gx--;gy--; REP(i,0,H){ cin>>field[i]; } queue<pair<int, int>> q; //y, x q.push({sy, sx}); while(!q.empty()){ auto now=q.front(); //cout<<now.F<<" "<<now.S<<endl; if(now.F==gy&&now.S==gx){ p("YES"); return 0; } q.pop(); REP(k,0,4){ int nexty = now.F + dy[k]; int nextx = now.S + dx[k]; if(!CK(nexty,0,H)||!CK(nextx,0,W)) continue; if(used[nexty][nextx]||abs(field[nexty][nextx]-field[now.F][now.S])>1) continue; used[nexty][nextx] = true; q.push({nexty, nextx}); } REP(k,0,4){ int nexty = now.F + dy[k]*2; int nextx = now.S + dx[k]*2; if(!CK(nexty,0,H)||!CK(nextx,0,W)) continue; if(used[nexty][nextx]||field[nexty][nextx]!=field[now.F][now.S]) continue; if(field[nexty-dy[k]][nextx-dx[k]]>field[now.F][now.S]) continue; used[nexty][nextx] = true; q.push({nexty, nextx}); } } p("NO"); return 0; }