結果
問題 | No.124 門松列(3) |
ユーザー | 0w1 |
提出日時 | 2016-12-13 13:08:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,048 bytes |
コンパイル時間 | 1,977 ms |
コンパイル使用メモリ | 181,068 KB |
実行使用メモリ | 7,552 KB |
最終ジャッジ日時 | 2024-05-07 09:21:12 |
合計ジャッジ時間 | 2,985 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
7,424 KB |
testcase_01 | WA | - |
testcase_02 | AC | 4 ms
7,408 KB |
testcase_03 | AC | 5 ms
7,416 KB |
testcase_04 | AC | 4 ms
7,424 KB |
testcase_05 | AC | 5 ms
7,468 KB |
testcase_06 | AC | 5 ms
7,296 KB |
testcase_07 | AC | 4 ms
7,516 KB |
testcase_08 | AC | 4 ms
7,424 KB |
testcase_09 | WA | - |
testcase_10 | AC | 4 ms
7,356 KB |
testcase_11 | AC | 4 ms
7,296 KB |
testcase_12 | WA | - |
testcase_13 | AC | 4 ms
7,380 KB |
testcase_14 | AC | 4 ms
7,296 KB |
testcase_15 | AC | 4 ms
7,304 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 5 ms
7,468 KB |
testcase_24 | AC | 4 ms
7,424 KB |
testcase_25 | AC | 5 ms
7,424 KB |
testcase_26 | AC | 4 ms
7,456 KB |
testcase_27 | AC | 4 ms
7,296 KB |
testcase_28 | AC | 4 ms
7,428 KB |
testcase_29 | AC | 5 ms
7,552 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector< int > vi; typedef vector< vi > vvi; typedef vector< ll > vl; typedef vector< vl > vvl; typedef pair< int, int > pii; typedef vector< pii > vp; typedef vector< double > vd; typedef vector< vd > vvd; typedef vector< string > vs; template< class T1, class T2 > int upmin( T1 &x, T2 v ){ if( x > v ){ x = v; return 1; } return 0; } template< class T1, class T2 > int upmax( T1 &x, T2 v ){ if( x < v ){ x = v; return 1; } return 0; } const int INF = 0x3f3f3f3f; int H, W; vvi G; void init(){ cin >> H >> W; G = vvi( H, vi( W ) ); for( int i = 0; i < H; ++i ) for( int j = 0; j < W; ++j ) cin >> G[ i ][ j ]; } int dp[ 100 + 1 ][ 100 + 1 ][ 9 + 1 ][ 9 + 1 ]; int kado( int a, int b, int c ){ if( a == 0 ) return 1; if( a == b or b == c or c == a ) return 0; return b == min( { a, b, c } ) or b == max( { a, b, c } ); } void preprocess(){ memset( dp, INF, sizeof( dp ) ); queue< tuple< int, int, int, int > > que; dp[ 0 ][ 0 ][ 0 ][ 0 ] = 0; que.emplace( 0, 0, 0, 0 ); while( not que.empty() ){ int x, y, a, b; tie( x, y, a, b ) = que.front(); que.pop(); const int dx[] = { 0, 1, 0, -1 }; const int dy[] = { 1, 0, -1, 0 }; for( int di = 0; di < 4; ++di ){ int nx = x + dx[ di ]; int ny = y + dy[ di ]; if( not ( 0 <= nx and nx < H and 0 <= ny and ny < W ) ) continue; if( not kado( a, b, G[ nx ][ ny ] ) ) continue; int na = b; int nb = G[ nx ][ ny ]; if( dp[ nx ][ ny ][ na ][ nb ] < INF ) continue; dp[ nx ][ ny ][ na ][ nb ] = dp[ x ][ y ][ a ][ b ] + 1; que.emplace( nx, ny, na, nb ); } } } void solve(){ int ans = INF; for( int i = 0; i <= 9; ++i ) for( int j = 0; j <= 9; ++j ) upmin( ans, dp[ H - 1 ][ W - 1 ][ i ][ j ] ); if( ans == INF ) cout << -1 << endl; else cout << ans << endl; } signed main(){ ios::sync_with_stdio( 0 ); init(); preprocess(); solve(); return 0; }