結果

問題 No.424 立体迷路
ユーザー 👑 KazunKazun
提出日時 2021-02-11 21:00:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 67,840 KB
最終ジャッジ日時 2024-07-18 08:39:29
合計ジャッジ時間 2,059 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,632 KB
testcase_01 AC 37 ms
54,016 KB
testcase_02 AC 38 ms
53,760 KB
testcase_03 AC 37 ms
53,504 KB
testcase_04 AC 38 ms
54,144 KB
testcase_05 AC 37 ms
53,760 KB
testcase_06 AC 38 ms
53,376 KB
testcase_07 AC 38 ms
53,760 KB
testcase_08 AC 37 ms
53,888 KB
testcase_09 AC 36 ms
53,632 KB
testcase_10 AC 34 ms
53,376 KB
testcase_11 AC 34 ms
53,376 KB
testcase_12 AC 35 ms
53,932 KB
testcase_13 AC 35 ms
53,760 KB
testcase_14 AC 35 ms
53,760 KB
testcase_15 AC 34 ms
53,888 KB
testcase_16 AC 34 ms
54,144 KB
testcase_17 AC 50 ms
60,160 KB
testcase_18 AC 38 ms
59,776 KB
testcase_19 AC 42 ms
59,520 KB
testcase_20 AC 38 ms
59,776 KB
testcase_21 AC 36 ms
54,016 KB
testcase_22 AC 35 ms
53,888 KB
testcase_23 AC 34 ms
53,504 KB
testcase_24 AC 52 ms
67,456 KB
testcase_25 AC 53 ms
67,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

H,W=map(int,input().split())
sx,sy,tx,ty=map(int,input().split())
sx-=1;sy-=1;tx-=1;ty-=1

S=[]
for _ in range(H):
    S.append(list(map(int,input())))

M=[(1,0),(-1,0),(0,1),(0,-1)]
T=[[0]*W for _ in range(H)]
T[sx][sy]=1
Q=deque([(sx,sy)])
while Q:
    x,y=Q.popleft()

    #隣のマスに移動
    for a,b in M:
        if not (0<=x+a<H and 0<=y+b<W):
            continue

        if abs(S[x][y]-S[x+a][y+b])>=2:
            continue

        if T[x+a][y+b]==0:
            T[x+a][y+b]=1
            Q.append((x+a,y+b))

    #2個隣のマスに移動
    for a,b in M:
        if not(0<=x+2*a<H and 0<=y+2*b<W):
            continue

        if S[x][y]==S[x+2*a][y+2*b] and S[x][y]>S[x+a][y+b]:
            if T[x+2*a][y+2*b]==0:
                T[x+2*a][y+2*b]=1
                Q.append((x+2*a,y+2*b))

print("YES" if T[tx][ty] else "NO")
0