結果

問題 No.424 立体迷路
ユーザー ntudantuda
提出日時 2024-01-03 16:15:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 921 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 68,800 KB
最終ジャッジ日時 2024-09-27 18:27:11
合計ジャッジ時間 1,988 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,708 KB
testcase_01 AC 37 ms
52,880 KB
testcase_02 AC 33 ms
52,276 KB
testcase_03 AC 35 ms
53,456 KB
testcase_04 AC 35 ms
52,892 KB
testcase_05 AC 34 ms
53,252 KB
testcase_06 AC 35 ms
52,764 KB
testcase_07 AC 33 ms
52,124 KB
testcase_08 AC 32 ms
52,440 KB
testcase_09 AC 32 ms
53,368 KB
testcase_10 AC 33 ms
53,556 KB
testcase_11 AC 32 ms
53,092 KB
testcase_12 AC 33 ms
52,888 KB
testcase_13 AC 34 ms
52,952 KB
testcase_14 AC 36 ms
53,524 KB
testcase_15 AC 34 ms
52,632 KB
testcase_16 AC 33 ms
52,824 KB
testcase_17 AC 38 ms
58,348 KB
testcase_18 AC 38 ms
59,220 KB
testcase_19 AC 37 ms
59,728 KB
testcase_20 AC 38 ms
58,736 KB
testcase_21 AC 33 ms
52,944 KB
testcase_22 AC 34 ms
52,824 KB
testcase_23 AC 34 ms
52,824 KB
testcase_24 AC 57 ms
68,800 KB
testcase_25 AC 57 ms
68,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
SG = [i-1 for i in list(map(int,input().split()))]
S = tuple(SG[:2])
G = tuple(SG[2:])
B = [[int(s) for s in input()] for _ in range(H)]
Q = {S}
dir = [[1,0],[0,1],[-1,0],[0,-1]]
nv = [[True] * W for _ in range(H)]
nv[S[0]][S[1]] = False
while Q:
    x,y = next(iter(Q))
    if G == (x,y):
        print("YES")
        exit()
    Q.remove((x,y))
    nowh = B[x][y]
    for xd,yd in dir:
        x2 = x + xd
        y2 = y + yd
        if 0 <= x2 < H and 0 <= y2 < W:
            if nv[x2][y2] and abs(B[x2][y2] - nowh) <= 1:
                nv[x2][y2] = False
                Q.add((x2,y2))
    for xd,yd in dir:
        x2 = x + xd * 2
        y2 = y + yd * 2
        x3 = x + xd
        y3 = y + yd
        if 0 <= x2 < H and 0 <= y2 < W:
            if nv[x2][y2] and B[x2][y2] == nowh and B[x3][y3] < nowh:
                nv[x2][y2] = False
                Q.add((x2,y2))

print("NO")
0