結果
問題 | No.124 門松列(3) |
ユーザー | evima |
提出日時 | 2015-01-11 23:43:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 1,475 bytes |
コンパイル時間 | 1,466 ms |
コンパイル使用メモリ | 169,360 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-13 04:15:57 |
合計ジャッジ時間 | 2,466 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 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,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | AC | 3 ms
6,944 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,944 KB |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 3 ms
6,944 KB |
testcase_29 | AC | 3 ms
6,940 KB |
ソースコード
// Enjoy your stay. #include <bits/stdc++.h> #define EPS 1e-9 #define INF 1070000000LL #define MOD 1000000007LL #define fir first #define foreach(it,X) for(auto it=(X).begin();it!=(X).end();it++) #define ite iterator #define mp make_pair #define mt make_tuple #define rep(i,n) rep2(i,0,n) #define rep2(i,m,n) for(int i=m;i<(n);i++) #define pb push_back #define sec second #define sz(x) ((int)(x).size()) using namespace std; typedef istringstream iss; typedef long long ll; typedef pair<ll,ll> pi; typedef stringstream sst; typedef vector<ll> vi; int dist[111][111][11]; int dy[] = {0,1,0,-1}; int dx[] = {1,0,-1,0}; int main(){ cin.tie(0); ios_base::sync_with_stdio(0); int N,M; int m[111][111]; cin>>M>>N; rep(i,N)rep(j,M)cin>>m[i][j]; rep(i,N)rep(j,M){ rep(ii,11){ dist[i][j][ii] = INF; } } dist[0][0][10] = 0; queue<tuple<int,int,int>> Q; Q.push(mt(0,0,10)); while(sz(Q)){ auto t = Q.front(); Q.pop(); int y,x,b; tie(y,x,b) = t; if(y == N-1 && x == M-1){ return cout<<dist[y][x][b]<<endl,0; } int cur = m[y][x]; rep(dir,4){ int ny = y + dy[dir]; int nx = x + dx[dir]; if(0 <= ny && ny < N && 0 <= nx && nx < M){ int nxt = m[ny][nx]; if(b == cur || b == nxt || cur == nxt) continue; if(b == 10 || cur > b && cur > nxt || cur < b && cur < nxt){ if(dist[ny][nx][cur] == INF){ dist[ny][nx][cur] = dist[y][x][b] + 1; Q.push(mt(ny,nx,cur)); } } } } } cout<<-1<<endl; }