結果
問題 | No.424 立体迷路 |
ユーザー | 0w1 |
提出日時 | 2016-11-24 00:39:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,298 bytes |
コンパイル時間 | 1,798 ms |
コンパイル使用メモリ | 179,464 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 07:12:27 |
合計ジャッジ時間 | 2,562 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 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 <bits/stdc++.h> using namespace std; int in_range( int h, int w, int x, int y ){ return 0 <= x and x < h and 0 <= y and y < w; } signed main(){ int H, W; cin >> H >> W; int Sx, Sy, Gx, Gy; cin >> Sx >> Sy >> Gx >> Gy; --Sx, --Sy, --Gx, --Gy; vector< string > G( H ); for( int i = 0; i < H; ++i ) cin >> G[ i ]; vector< vector< int > > vis( H, vector< int >( W ) ); queue< pair< int, int > > que; que.emplace( Sx, Sy ); vis[ Sx ][ Sy ] = 1; while( not que.empty() ){ int x, y; tie( x, y ) = que.front(); que.pop(); if( tie( x, y ) == tie( Gx, Gy ) ) cout << "YES" << endl, exit( 0 ); static const int dx[] = { 0, 1, 0, -1 }; static const int dy[] = { 1, 0, -1, 0 }; for( int di = 0; di < 4; ++di ){ int nx = x + dx[ di ], ny = y + dy[ di ]; if( not in_range( H, W, nx, ny ) ) continue; if( not vis[ nx ][ ny ] and abs( G[ nx ][ ny ] - G[ x ][ y ] ) <= 1 ) vis[ nx ][ ny ] = 1, que.emplace( nx, ny ); nx += dx[ di ], ny += dy[ di ]; if( not in_range( H, W, nx, ny ) ) continue; if( not vis[ nx ][ ny ] and G[ nx ][ ny ] == G[ x ][ y ] and G[ x + dx[ di ] ][ y + dy[ di ] ] < G[ x ][ y ] ) vis[ nx ][ ny ] = 1, que.emplace( nx, ny ); } } cout << "NO" << endl; return 0; }