結果
問題 | No.424 立体迷路 |
ユーザー | naimonon77 |
提出日時 | 2016-09-24 10:57:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,514 bytes |
コンパイル時間 | 1,719 ms |
コンパイル使用メモリ | 166,604 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-05 07:09:48 |
合計ジャッジ時間 | 2,510 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,948 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 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,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 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,940 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 3 ms
6,944 KB |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #define _USE_MATH_DEFINES #include "bits/stdc++.h" #define REP(i,a,b) for(int i=a;i<b;++i) #define rep(i,n) REP(i,0,n) #define ll long long #define ull unsigned ll typedef long double ld; #define ALL(a) begin(a),end(a) #define ifnot(a) if(not a) #define dump(x) cerr << #x << " = " << (x) << endl using namespace std; // #define int ll #ifdef _MSC_VER const bool test = true; #else const bool test = false; #endif int dx[] = { 0,1,0,-1 }; int dy[] = { 1,0,-1,0 }; #define INF (1 << 28) ull mod = (int)1e9 + 7; //..................... #define MAX (int)1e6 + 5 int H, W; int sx, sy, gx, gy; int field[55][55]; bool visited[55][55]; bool ng(int y, int x) { return y < 0 || H <= y || x < 0 || W <= x; } void dfs(int y,int x) { visited[y][x] = true; rep(i, 4) { int ny = y + dy[i]; int nx = x + dx[i]; if (ng(ny, nx)) continue; if (visited[ny][nx] == true) continue; if (abs(field[ny][nx] - field[y][x]) > 1) continue; dfs(ny, nx); } rep(i, 4) { int ny = y + 2 * dy[i]; int nx = x + 2 * dx[i]; int mid_y = y + dy[i]; int mid_x = x + dx[i]; if (ng(ny, nx)) continue; if (visited[ny][nx]) continue; if (field[ny][nx] != field[y][x]) continue; if (field[ny][nx] <= field[mid_y][mid_x]) continue; dfs(ny, nx); } } signed main() { cin >> H >> W; cin >> sy >> sx; sy--; sx--; cin >> gy >> gx; gy--; gx--; rep(i, H) rep(j, W) { char c; cin >> c; field[i][j] = c - '0'; } dfs(sy,sx); puts(visited[gy][gx] ? "YES" : "NO"); return 0; }