結果

問題 No.20 砂漠のオアシス
ユーザー noriocnorioc
提出日時 2024-08-23 01:58:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 5,000 ms
コード長 1,081 bytes
コンパイル時間 978 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 84,896 KB
最終ジャッジ日時 2024-08-23 01:58:04
合計ジャッジ時間 3,952 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,616 KB
testcase_01 AC 39 ms
54,592 KB
testcase_02 AC 38 ms
54,588 KB
testcase_03 AC 85 ms
76,772 KB
testcase_04 AC 78 ms
77,164 KB
testcase_05 AC 128 ms
78,772 KB
testcase_06 AC 103 ms
78,296 KB
testcase_07 AC 324 ms
84,896 KB
testcase_08 AC 110 ms
78,392 KB
testcase_09 AC 236 ms
81,884 KB
testcase_10 AC 42 ms
55,836 KB
testcase_11 AC 37 ms
56,080 KB
testcase_12 AC 99 ms
76,820 KB
testcase_13 AC 83 ms
76,912 KB
testcase_14 AC 108 ms
77,848 KB
testcase_15 AC 107 ms
76,832 KB
testcase_16 AC 124 ms
77,584 KB
testcase_17 AC 111 ms
77,764 KB
testcase_18 AC 119 ms
77,732 KB
testcase_19 AC 119 ms
77,668 KB
testcase_20 AC 71 ms
74,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from collections.abc import Iterator


def neighbors4(r: int, c: int) -> Iterator[tuple[int, int]]:
    for dr, dc in [(-1, 0), (1, 0), (0, -1), (0, 1)]:
        nr = r + dr
        nc = c + dc
        if not (0 <= nr < N and 0 <= nc < N): continue
        yield nr, nc


INF = 1 << 60
N, V, OX, OY = map(int, input().split())
G = []
for _ in range(N):
    G.append(list(map(int, input().split())))


def bfs(sr: int, sc: int, v: int):
    t = [[-INF] * N for _ in range(N)]
    q = deque([(sr, sc)])
    t[sr][sc] = v
    while q:
        r, c = q.popleft()

        for nr, nc in neighbors4(r, c):
            nv = t[r][c] - G[nr][nc]
            if nv <= 0 or t[nr][nc] >= nv: continue
            t[nr][nc] = nv
            q.append((nr, nc))

    return t


# オアシスを経由せずに到達できるか
t = bfs(0, 0, V)
if t[N-1][N-1] > 0:
    print('YES')
    exit()

if (OX, OY) != (0, 0) and t[OY-1][OX-1] > 0:
    v = t[OY-1][OX-1] * 2
    t = bfs(OY-1, OX-1, v)
    if t[N-1][N-1] > 0:
        print('YES')
        exit()

print('NO')
0