結果

問題 No.424 立体迷路
ユーザー flippergoflippergo
提出日時 2024-10-17 18:51:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 850 bytes
コンパイル時間 673 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 69,292 KB
最終ジャッジ日時 2024-10-17 18:52:00
合計ジャッジ時間 3,166 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,164 KB
testcase_01 AC 34 ms
55,712 KB
testcase_02 AC 35 ms
55,172 KB
testcase_03 AC 33 ms
54,792 KB
testcase_04 AC 35 ms
54,732 KB
testcase_05 AC 33 ms
55,596 KB
testcase_06 AC 55 ms
54,356 KB
testcase_07 AC 33 ms
54,656 KB
testcase_08 AC 35 ms
55,116 KB
testcase_09 AC 33 ms
53,820 KB
testcase_10 AC 33 ms
54,412 KB
testcase_11 AC 33 ms
54,428 KB
testcase_12 AC 33 ms
55,048 KB
testcase_13 AC 34 ms
55,236 KB
testcase_14 AC 36 ms
55,220 KB
testcase_15 AC 34 ms
54,188 KB
testcase_16 AC 33 ms
55,648 KB
testcase_17 AC 37 ms
61,160 KB
testcase_18 AC 37 ms
61,044 KB
testcase_19 AC 37 ms
61,624 KB
testcase_20 AC 38 ms
60,660 KB
testcase_21 AC 36 ms
54,920 KB
testcase_22 AC 35 ms
55,368 KB
testcase_23 AC 33 ms
53,932 KB
testcase_24 AC 53 ms
69,292 KB
testcase_25 AC 55 ms
69,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
H,W = map(int,input().split())
sx,sy,gx,gy = map(int,input().split())
B = [[0 for _ in range(W+1)]]
for _ in range(H):
    b = [0]+list(map(int,list(input())))
    B.append(b)
A = [[0 for _ in range(W+1)] for _ in range(H+1)]
A[sx][sy] = 1
que = deque([(sx,sy)])
while que:
    i,j = que.popleft()
    for di,dj in [(1,0),(0,1),(-1,0),(0,-1)]:
        ni = i+di
        nj = j+dj
        if 1<=ni<=H and 1<=nj<=W and abs(B[ni][nj]-B[i][j])<=1 and A[ni][nj]==0:
            A[ni][nj] = 1
            que.append((ni,nj))
    for di,dj in [(2,0),(0,2),(-2,0),(0,-2)]:
        ni = i+di
        nj = j+dj
        if 1<=ni<=H and 1<=nj<=W and B[ni][nj]==B[i][j] and B[i+di//2][j+dj//2]<B[i][j] and A[ni][nj]==0:
            A[ni][nj] = 1
            que.append((ni,nj))
if A[gx][gy]==1:
    print("YES")
else:
    print("NO")
0