結果

問題 No.424 立体迷路
ユーザー H3PO4H3PO4
提出日時 2020-07-30 14:42:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 871 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-04 01:06:12
合計ジャッジ時間 1,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
11,008 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 29 ms
11,008 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 31 ms
10,880 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 31 ms
10,880 KB
testcase_21 AC 31 ms
10,880 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 44 ms
11,136 KB
testcase_25 AC 45 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

int1 = lambda x: int(x) - 1

H, W = map(int, input().split())
Sx, Sy, Gx, Gy = map(int1, input().split())
B = [[int(x) for x in input()] for _ in range(H)]

# bfs
d = deque([(Sx, Sy)])
visited = set(d)
while d:
    x, y = d.popleft()
    for dx, dy in ((0, 1), (1, 0), (0, -1), (-1, 0)):
        if 0 <= x + dx < H and 0 <= y + dy < W and (x + dx, y + dy) not in visited:
            if abs(B[x + dx][y + +dy] - B[x][y]) <= 1:
                d.append(((x + dx, y + dy)))
                visited.add((x + dx, y + dy))
    for dx, dy in ((0, 2), (2, 0), (0, -2), (-2, 0)):
        if 0 <= x + dx < H and 0 <= y + dy < W and (x + dx, y + dy) not in visited:
            if B[x + dx][y + +dy] == B[x][y]:
                d.append(((x + dx, y + dy)))
                visited.add((x + dx, y + dy))

print('YES' if (Gx, Gy) in visited else 'NO')
0