結果
問題 | No.124 門松列(3) |
ユーザー | fiord |
提出日時 | 2015-08-17 23:19:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,350 bytes |
コンパイル時間 | 1,491 ms |
コンパイル使用メモリ | 166,836 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 10:04:32 |
合計ジャッジ時間 | 2,325 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 3 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 | 1 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 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 3 ms
5,376 KB |
testcase_29 | AC | 3 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i=0;i<n;i++) int bfs[2][100][100]; bool ok(int a,int b,int c){ if(a<b&&c<b) return true; if(a>b&&c>b) return true; return false; } int main(){ int w,h; cin>>w>>h; int m[h][w]; rep(i,h) rep(j,w) cin>>m[i][j]; rep(i,h) rep(j,w) bfs[0][i][j]=bfs[1][i][j]=1<<30; bfs[0][0][0]=bfs[1][0][0]=0; if(m[0][0]<m[0][1]) bfs[0][0][1]=1; else if(m[0][0]>m[0][1]) bfs[1][0][1]=1; if(m[0][0]<m[1][0]) bfs[0][1][0]=1; else if(m[0][0]>m[1][0]) bfs[1][1][0]=1; int mx[]={1,-1,0,0}; int my[]={0,0,1,-1}; queue<tuple<int,int,int,int>> q; q.push(make_tuple(0,1,m[0][0],(bfs[0][0][1]==1?0:1))); q.push(make_tuple(1,0,m[0][0],(bfs[0][1][0]==1?0:1))); while(!q.empty()){ auto crt=q.front(); q.pop(); int y=get<0>(crt); int x=get<1>(crt); int before=get<2>(crt); int next=get<3>(crt); for(int i=0;i<4;i++){ if(0>y+my[i]||y+my[i]>=h||0>x+mx[i]||x+mx[i]>=w) continue; if(ok(before,m[y][x],m[y+my[i]][x+mx[i]])){ if(bfs[next^1][y+my[i]][x+mx[i]]!=(1<<30)) continue; bfs[next^1][y+my[i]][x+mx[i]]=bfs[next][y][x]+1; q.push(make_tuple(y+my[i],x+mx[i],m[x][y],next^1)); } } if(bfs[next][h-1][w-1]!=1<<30) break; } if(min(bfs[0][h-1][w-1],bfs[1][h-1][w-1])==(1<<30)) cout<<-1<<endl; else cout<<min(bfs[0][h-1][w-1],bfs[1][h-1][w-1])<<endl; return 0; }