結果

問題 No.424 立体迷路
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-07-03 01:26:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 1,431 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 68,208 KB
最終ジャッジ日時 2024-07-03 01:27:01
合計ジャッジ時間 2,685 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,436 KB
testcase_01 AC 42 ms
54,092 KB
testcase_02 AC 43 ms
54,008 KB
testcase_03 AC 44 ms
54,380 KB
testcase_04 AC 44 ms
55,176 KB
testcase_05 AC 42 ms
55,048 KB
testcase_06 AC 43 ms
54,388 KB
testcase_07 AC 43 ms
54,624 KB
testcase_08 AC 43 ms
55,488 KB
testcase_09 AC 43 ms
53,876 KB
testcase_10 AC 43 ms
54,388 KB
testcase_11 AC 43 ms
55,156 KB
testcase_12 AC 43 ms
55,084 KB
testcase_13 AC 42 ms
55,052 KB
testcase_14 AC 42 ms
54,052 KB
testcase_15 AC 42 ms
54,928 KB
testcase_16 AC 43 ms
54,024 KB
testcase_17 AC 47 ms
59,848 KB
testcase_18 AC 47 ms
61,600 KB
testcase_19 AC 48 ms
60,988 KB
testcase_20 AC 47 ms
61,584 KB
testcase_21 AC 44 ms
54,740 KB
testcase_22 AC 43 ms
55,356 KB
testcase_23 AC 43 ms
55,068 KB
testcase_24 AC 64 ms
68,208 KB
testcase_25 AC 64 ms
67,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://yukicoder.me/problems/no/1219

from collections import deque

def main():
    h, w = map(int, input().split())
    sx, sy, gx, gy = map(int, input().split())
    B = []
    for _ in range(h):
        row = input()
        row = [int(x) for x in row]
        B.append(row)
    
    sx -= 1
    sy -= 1
    gx -= 1
    gy -= 1
    dists = [[False] * w for _ in range(h)]
    dists[sx][sy] = True
    queue = deque()
    queue.append((sx, sy))
    while len(queue) > 0:
        x, y = queue.popleft()
        height = B[x][y]
        for dx, dy in [(1, 0), (-1, 0), (0, 1), (0, -1)]:
            nx = x + dx
            ny = y + dy
            if nx < 0 or nx >= h or ny < 0 or ny >= w:
                continue

            if abs(B[nx][ny] - height) <= 1 and dists[nx][ny] == False:
                dists[nx][ny] = True
                queue.append((nx, ny))
        
        for dx, dy in [(1, 0), (-1, 0), (0, 1), (0, -1)]:
            nx = x + 2 * dx
            ny = y + 2 * dy
            if nx < 0 or nx >= h or ny < 0 or ny >= w:
                continue
            nx1 = x + dx
            ny1 = y + dy
            if height == B[nx][ny] and B[nx1][ny1] < height:
                if dists[nx][ny] == False:
                    dists[nx][ny] = True
                    queue.append((nx, ny))
    
    if dists[gx][gy]:
        print("YES")
    else:
        print("NO")







if __name__ == "__main__":
    main()
0