結果

問題 No.424 立体迷路
ユーザー AEnAEn
提出日時 2022-05-16 18:45:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 972 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 73,984 KB
最終ジャッジ日時 2024-09-14 11:29:45
合計ジャッジ時間 2,747 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,480 KB
testcase_01 AC 42 ms
54,128 KB
testcase_02 AC 43 ms
55,000 KB
testcase_03 AC 42 ms
54,828 KB
testcase_04 AC 44 ms
54,676 KB
testcase_05 AC 42 ms
53,916 KB
testcase_06 AC 44 ms
54,240 KB
testcase_07 AC 42 ms
53,888 KB
testcase_08 AC 41 ms
53,536 KB
testcase_09 AC 42 ms
53,996 KB
testcase_10 AC 41 ms
55,036 KB
testcase_11 AC 42 ms
55,056 KB
testcase_12 AC 42 ms
54,048 KB
testcase_13 AC 42 ms
54,056 KB
testcase_14 AC 42 ms
55,416 KB
testcase_15 AC 43 ms
54,264 KB
testcase_16 AC 42 ms
54,996 KB
testcase_17 AC 42 ms
55,400 KB
testcase_18 AC 42 ms
54,792 KB
testcase_19 AC 42 ms
54,644 KB
testcase_20 AC 43 ms
54,776 KB
testcase_21 AC 41 ms
54,848 KB
testcase_22 AC 44 ms
54,332 KB
testcase_23 AC 42 ms
54,548 KB
testcase_24 AC 73 ms
73,984 KB
testcase_25 AC 74 ms
73,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

H, W = map(int, input().split())
sx, sy, gx, gy = map(int, input().split())
m = []
for i in range(H):
    m.append(input())

q = deque()
dis = [[-1]*W for _ in range(H)]
dis[sx-1][sy-1] = 0
q.append((sx-1, sy-1))
xx = [1, 0, -1, 0]
pp = [2, 0, -2, 0]
yy = [0, 1, 0, -1]
qq = [0, 2, 0, -2]

while q:
    x, y = q.popleft()
    for px, py in zip(xx, yy):
        cx = x+px
        cy = y+py
        if 0<=cx<H and 0<=cy<W and dis[cx][cy] == -1:
            if abs(int(m[x][y])-int(m[cx][cy])) <= 1:
                dis[cx][cy] = dis[x][y] + 1
                q.append((cx, cy))
    for px, py in zip(pp, qq):
        cx = x+px
        cy = y+py
        if 0<=cx<H and 0<=cy<W and dis[cx][cy] == -1:
            if int(m[cx][cy]) == int(m[x][y]) and int(m[(cx+x)//2][(cy+y)//2]) < int(m[x][y]):
                dis[cx][cy] = dis[x][y]+1
                q.append((cx, cy))
if dis[gx-1][gy-1] == -1:
    print('NO')
else:
    print('YES')        
0