結果
問題 | No.424 立体迷路 |
ユーザー | mayoko_ |
提出日時 | 2016-09-22 22:35:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 2,057 bytes |
コンパイル時間 | 903 ms |
コンパイル使用メモリ | 105,200 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 07:00:21 |
合計ジャッジ時間 | 1,684 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 | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 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 | 1 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<cstdio> #include<cstdlib> #include<cstring> #include<cmath> //#include<cctype> #include<climits> #include<iostream> #include<string> #include<vector> #include<map> //#include<list> #include<queue> #include<deque> #include<algorithm> //#include<numeric> #include<utility> //#include<memory> #include<functional> #include<cassert> #include<set> #include<stack> #include<random> const int dx[] = {1, 0, -1, 0}; const int dy[] = {0, -1, 0, 1}; using namespace std; typedef long long ll; typedef unsigned long long ull; typedef vector<int> vi; typedef vector<ll> vll; typedef pair<int, int> pii; bool done[55][55]; int board[55][55]; string field[55]; int main() { cin.tie(0); ios::sync_with_stdio(false); int H, W; cin >> H >> W; int sx, sy, gx, gy; cin >> sy >> sx >> gy >> gx; sy--; sx--; gy--; gx--; for (int i = 0; i < H; i++) { cin >> field[i]; for (int j = 0; j < W; j++) board[i][j] = field[i][j] - '0'; } queue<pii> que; que.push(pii(sy, sx)); done[sy][sx] = true; while (!que.empty()) { int y = que.front().first, x = que.front().second; que.pop(); for (int i = 0; i < 4; i++) { int ny = y+dy[i], nx = x+dx[i]; int nny = y+2*dy[i], nnx = x+2*dx[i]; if (0 <= ny && ny < H && 0 <= nx && nx < W) { if (abs(board[y][x] - board[ny][nx]) <= 1) { if (!done[ny][nx]) { que.push(pii(ny, nx)); done[ny][nx] = true; } } } if (0 <= nny && nny < H && 0 <= nnx && nnx < W) { if (abs(board[y][x] - board[nny][nnx]) <= 0 && board[ny][nx] < board[y][x]) { if (!done[nny][nnx]) { que.push(pii(nny, nnx)); done[nny][nnx] = true; } } } } } if (done[gy][gx]) cout << "YES" << endl; else cout << "NO" << endl; return 0; }