結果
問題 | No.424 立体迷路 |
ユーザー | 👑 rin204 |
提出日時 | 2022-02-14 00:23:15 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 61 ms / 2,000 ms |
コード長 | 914 bytes |
コンパイル時間 | 155 ms |
コンパイル使用メモリ | 82,428 KB |
実行使用メモリ | 66,176 KB |
最終ジャッジ日時 | 2024-06-29 05:52:16 |
合計ジャッジ時間 | 2,289 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
51,968 KB |
testcase_01 | AC | 42 ms
52,352 KB |
testcase_02 | AC | 41 ms
51,968 KB |
testcase_03 | AC | 41 ms
52,352 KB |
testcase_04 | AC | 41 ms
51,840 KB |
testcase_05 | AC | 39 ms
51,880 KB |
testcase_06 | AC | 40 ms
51,968 KB |
testcase_07 | AC | 40 ms
51,968 KB |
testcase_08 | AC | 40 ms
52,224 KB |
testcase_09 | AC | 40 ms
51,584 KB |
testcase_10 | AC | 39 ms
51,840 KB |
testcase_11 | AC | 39 ms
52,352 KB |
testcase_12 | AC | 39 ms
52,480 KB |
testcase_13 | AC | 39 ms
52,096 KB |
testcase_14 | AC | 40 ms
52,096 KB |
testcase_15 | AC | 39 ms
52,096 KB |
testcase_16 | AC | 40 ms
52,096 KB |
testcase_17 | AC | 44 ms
58,112 KB |
testcase_18 | AC | 43 ms
58,368 KB |
testcase_19 | AC | 43 ms
57,960 KB |
testcase_20 | AC | 44 ms
57,856 KB |
testcase_21 | AC | 39 ms
52,352 KB |
testcase_22 | AC | 40 ms
52,736 KB |
testcase_23 | AC | 39 ms
52,096 KB |
testcase_24 | AC | 61 ms
65,920 KB |
testcase_25 | AC | 61 ms
66,176 KB |
ソースコード
h, w = map(int, input().split()) sx, sy, gx, gy = map(int, input().split()) sx -= 1 sy -= 1 gx -= 1 gy -= 1 B = [list(map(int, input())) for _ in range(h)] tf = [[False] * w for _ in range(h)] tf[sx][sy] = True stack = [(sx, sy)] directions = [(0, -1), (0, 1), (-1, 0), (1, 0)] while stack: x, y = stack.pop() for dx, dy in directions: nx = x + dx ny = y + dy if nx == -1 or nx == h or ny == -1 or ny == w: continue if abs(B[x][y] - B[nx][ny]) <= 1 and not tf[nx][ny]: tf[nx][ny] = True stack.append((nx, ny)) nx2 = nx + dx ny2 = ny + dy if nx2 == -1 or nx2 == h or ny2 == -1 or ny2 == w: continue if B[x][y] == B[nx2][ny2] and B[nx][ny] < B[x][y] and not tf[nx2][ny2]: tf[nx2][ny2] = True stack.append((nx2, ny2)) if tf[gx][gy]: print("YES") else: print("NO")