結果

問題 No.424 立体迷路
ユーザー O2MTO2MT
提出日時 2020-12-19 17:05:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 1,043 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 67,712 KB
最終ジャッジ日時 2024-09-21 10:26:58
合計ジャッジ時間 2,367 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,760 KB
testcase_01 AC 43 ms
53,376 KB
testcase_02 AC 43 ms
53,888 KB
testcase_03 AC 42 ms
54,016 KB
testcase_04 AC 45 ms
54,016 KB
testcase_05 AC 44 ms
53,888 KB
testcase_06 AC 41 ms
53,632 KB
testcase_07 AC 42 ms
53,760 KB
testcase_08 AC 45 ms
53,888 KB
testcase_09 AC 42 ms
53,888 KB
testcase_10 AC 42 ms
53,888 KB
testcase_11 AC 43 ms
53,760 KB
testcase_12 AC 42 ms
53,376 KB
testcase_13 AC 42 ms
53,888 KB
testcase_14 AC 42 ms
54,016 KB
testcase_15 AC 42 ms
53,632 KB
testcase_16 AC 42 ms
54,144 KB
testcase_17 AC 46 ms
58,752 KB
testcase_18 AC 48 ms
59,008 KB
testcase_19 AC 46 ms
59,520 KB
testcase_20 AC 46 ms
58,880 KB
testcase_21 AC 42 ms
53,632 KB
testcase_22 AC 43 ms
54,016 KB
testcase_23 AC 43 ms
53,888 KB
testcase_24 AC 48 ms
59,648 KB
testcase_25 AC 66 ms
67,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
H,W = map(int,input().split())
sx,sy,gx,gy = map(int,input().split())
sx -= 1
sy -= 1
gx -= 1
gy -= 1
B = [list(str(input())) for _ in range(H)]
visited = [[0 for _ in range(W)] for _ in range(H)]
visited[sx][sy] = 1
que = deque([(sx,sy,int(B[sx][sy]))])
move = [(-1,0),(0,-1),(1,0),(0,1)]
while que:
    x,y,z = que.pop()
    if x == gx and y == gy:
        print("YES")
        exit()
    for i,j in move:
        h,w = x+i,y+j
        if 0 <= h < H and 0 <= w < W:
            if visited[h][w] == 0:
                if int(B[h][w])-1 <= z <= int(B[h][w])+1:
                    visited[h][w] = 1
                    que.append((h,w,int(B[h][w])))
                if z > int(B[h][w]):
                    h += i
                    w += j
                    if 0 <= h < H and 0 <= w < W:
                        if visited[h][w] == 0:
                            if z == int(B[h][w]):
                                visited[h][w] = 1
                                que.append((h,w,int(B[h][w])))

print("NO")
0