結果
問題 | No.424 立体迷路 |
ユーザー | roaris |
提出日時 | 2019-08-12 22:46:38 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 52 ms / 2,000 ms |
コード長 | 1,231 bytes |
コンパイル時間 | 137 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 68,428 KB |
最終ジャッジ日時 | 2024-09-17 15:23:02 |
合計ジャッジ時間 | 2,050 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
54,056 KB |
testcase_01 | AC | 36 ms
54,044 KB |
testcase_02 | AC | 35 ms
54,228 KB |
testcase_03 | AC | 36 ms
54,800 KB |
testcase_04 | AC | 37 ms
54,328 KB |
testcase_05 | AC | 37 ms
54,024 KB |
testcase_06 | AC | 37 ms
54,248 KB |
testcase_07 | AC | 35 ms
54,192 KB |
testcase_08 | AC | 37 ms
54,372 KB |
testcase_09 | AC | 37 ms
55,256 KB |
testcase_10 | AC | 37 ms
55,364 KB |
testcase_11 | AC | 36 ms
54,060 KB |
testcase_12 | AC | 37 ms
54,944 KB |
testcase_13 | AC | 36 ms
55,548 KB |
testcase_14 | AC | 36 ms
54,108 KB |
testcase_15 | AC | 33 ms
55,188 KB |
testcase_16 | AC | 33 ms
55,564 KB |
testcase_17 | AC | 37 ms
61,912 KB |
testcase_18 | AC | 37 ms
61,176 KB |
testcase_19 | AC | 37 ms
61,100 KB |
testcase_20 | AC | 38 ms
61,172 KB |
testcase_21 | AC | 35 ms
54,728 KB |
testcase_22 | AC | 35 ms
54,056 KB |
testcase_23 | AC | 35 ms
55,172 KB |
testcase_24 | AC | 52 ms
68,156 KB |
testcase_25 | AC | 52 ms
68,428 KB |
ソースコード
from collections import deque def bfs(sx, sy): queue = deque([]) queue.append((sx, sy)) visited = [[-1 for _ in range(w)] for _ in range(h)] visited[sx][sy] = 1 while len(queue) > 0: cx, cy = queue.popleft() for dx, dy in [(-1, 0), (1, 0), (0, -1), (0, 1)]: nx, ny = cx + dx, cy + dy if 0 <= nx < h and 0 <= ny < w: if abs(S[cx][cy] - S[nx][ny]) <= 1 and visited[nx][ny] == -1: visited[nx][ny] = 1 queue.append((nx, ny)) for dx, dy in [(-2, 0), (2, 0), (0, -2), (0, 2)]: nx, ny = cx + dx, cy + dy if 0 <= nx < h and 0 <= ny < w: mx, my = (nx + cx) // 2, (ny + cy) // 2 if S[cx][cy] == S[nx][ny] and S[cx][cy] > S[mx][my] and visited[nx][ny] == -1: visited[nx][ny] = 1 queue.append((nx, ny)) return visited h, w = map(int, input().split()) sx, sy, gx, gy = map(int, input().split()) S = [list(map(int, list(input()))) for _ in range(h)] visited = bfs(sx-1, sy-1) if visited[gx-1][gy-1] == 1: print('YES') else: print('NO')