結果

問題 No.424 立体迷路
ユーザー lloyzlloyz
提出日時 2023-01-12 00:01:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 1,077 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 69,120 KB
最終ジャッジ日時 2024-06-02 01:31:48
合計ジャッジ時間 2,189 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,760 KB
testcase_01 AC 37 ms
53,632 KB
testcase_02 AC 37 ms
53,760 KB
testcase_03 AC 36 ms
54,400 KB
testcase_04 AC 40 ms
54,400 KB
testcase_05 AC 38 ms
54,144 KB
testcase_06 AC 37 ms
54,144 KB
testcase_07 AC 37 ms
54,024 KB
testcase_08 AC 37 ms
54,016 KB
testcase_09 AC 38 ms
53,760 KB
testcase_10 AC 37 ms
53,888 KB
testcase_11 AC 35 ms
53,760 KB
testcase_12 AC 36 ms
54,016 KB
testcase_13 AC 35 ms
54,144 KB
testcase_14 AC 37 ms
54,016 KB
testcase_15 AC 38 ms
54,016 KB
testcase_16 AC 37 ms
54,144 KB
testcase_17 AC 43 ms
60,544 KB
testcase_18 AC 42 ms
60,288 KB
testcase_19 AC 42 ms
60,544 KB
testcase_20 AC 42 ms
60,416 KB
testcase_21 AC 38 ms
54,400 KB
testcase_22 AC 36 ms
54,144 KB
testcase_23 AC 38 ms
53,760 KB
testcase_24 AC 61 ms
68,992 KB
testcase_25 AC 61 ms
69,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

D = [(1, 0), (0, 1), (-1, 0), (0, -1)]
DD = [(2, 0), (0, 2), (-2, 0), (0, -2)]

h, w = map(int, input().split())
si, sj, gi, gj = map(int, input().split())
si -= 1
sj -= 1
gi -= 1
gj -= 1
B = [list(map(int, list(input()))) for _ in range(h)]

visited = [[False for _ in range(w)] for _ in range(h)]
visited[si][sj] = True
Que = deque([(si, sj)])
while Que:
    ci, cj = Que.popleft()
    if ci == gi and cj == gj:
        print("YES")
        exit()
    for di, dj in D:
        ni = ci + di
        nj = cj + dj
        if 0 <= ni < h and 0 <= nj < w and not visited[ni][nj]:
            if abs(B[ci][cj] - B[ni][nj]) <= 1:
                visited[ni][nj] = True
                Que.append((ni, nj))
    for di, dj in DD:
        ni = ci + di
        nj = cj + dj
        if 0 <= ni < h and 0 <= nj < w and not visited[ni][nj]:
            mi = (ci + ni) // 2
            mj = (cj + nj) // 2
            if B[ci][cj] == B[ni][nj] and B[ci][cj] > B[mi][mj]:
                visited[ni][nj] = True
                Que.append((ni, nj))
print("NO")
0