結果

問題 No.424 立体迷路
ユーザー mlihua09mlihua09
提出日時 2020-09-12 13:07:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 1,530 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 67,072 KB
最終ジャッジ日時 2024-06-10 07:37:43
合計ジャッジ時間 2,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,016 KB
testcase_01 AC 40 ms
53,888 KB
testcase_02 AC 39 ms
54,144 KB
testcase_03 AC 39 ms
54,400 KB
testcase_04 AC 39 ms
53,984 KB
testcase_05 AC 38 ms
53,992 KB
testcase_06 AC 38 ms
54,016 KB
testcase_07 AC 39 ms
53,888 KB
testcase_08 AC 40 ms
54,016 KB
testcase_09 AC 39 ms
54,144 KB
testcase_10 AC 39 ms
54,264 KB
testcase_11 AC 40 ms
54,016 KB
testcase_12 AC 40 ms
54,144 KB
testcase_13 AC 39 ms
54,552 KB
testcase_14 AC 40 ms
54,260 KB
testcase_15 AC 38 ms
54,144 KB
testcase_16 AC 39 ms
54,272 KB
testcase_17 AC 44 ms
60,544 KB
testcase_18 AC 44 ms
60,416 KB
testcase_19 AC 44 ms
60,416 KB
testcase_20 AC 44 ms
60,544 KB
testcase_21 AC 38 ms
54,272 KB
testcase_22 AC 41 ms
54,656 KB
testcase_23 AC 38 ms
54,272 KB
testcase_24 AC 56 ms
67,072 KB
testcase_25 AC 57 ms
66,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


h, w = map(int, input().split())

sx, sy, gx, gy = map(int, input().split())

B = [[int(i) for i in input()] for i in range(h)]

visited = [[0] * w + [1, 1] for i in range(h)] + [[1] * (w + 2)] * 2

from collections import deque
que = deque([sx - 1, sy - 1])
visited[sx - 1][sy - 1] = 1

while que:
    q1, q2 = que.popleft(), que.popleft()
    h = B[q1][q2]
    
    if visited[q1 + 1][q2] == 0 and abs(B[q1 + 1][q2] - h) < 2:
        visited[q1 + 1][q2] = 1
        que.extend([q1 + 1, q2])
    if visited[q1 - 1][q2] == 0 and abs(B[q1 - 1][q2] - h) < 2:
        visited[q1 - 1][q2] = 1
        que.extend([q1 - 1, q2])
    if visited[q1][q2 + 1] == 0 and abs(B[q1][q2 + 1] - h) < 2:
        visited[q1][q2 + 1] = 1
        que.extend([q1, q2 + 1])
    if visited[q1][q2 - 1] == 0 and abs(B[q1][q2 - 1] - h) < 2:
        visited[q1][q2 - 1] = 1
        que.extend([q1, q2 - 1])
    if visited[q1 + 2][q2] == 0 and B[q1 + 2][q2] == h and B[q1 + 1][q2] < h:
        visited[q1 + 2][q2] = 1
        que.extend([q1 + 2, q2])
    if visited[q1 - 2][q2] == 0 and B[q1 - 2][q2] == h and B[q1 - 1][q2] < h:
        visited[q1 - 2][q2] = 1
        que.extend([q1 - 2, q2])
    if visited[q1][q2 + 2] == 0 and B[q1][q2 + 2] == h and B[q1][q2 + 1] < h:
        visited[q1][q2 + 2] = 1
        que.extend([q1, q2 + 2])
    if visited[q1][q2 - 2] == 0 and B[q1][q2 - 2] == h and B[q1][q2 - 1] < h:
        visited[q1][q2 - 2] = 1
        que.extend([q1, q2 - 2])

if visited[gx - 1][gy - 1]:
    print('YES')
else:
    print('NO')
        
0