結果

問題 No.20 砂漠のオアシス
ユーザー noriocnorioc
提出日時 2024-08-23 01:48:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 363 ms / 5,000 ms
コード長 1,080 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 85,248 KB
最終ジャッジ日時 2024-08-23 01:48:29
合計ジャッジ時間 4,018 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,060 KB
testcase_01 AC 46 ms
54,400 KB
testcase_02 AC 45 ms
55,260 KB
testcase_03 AC 86 ms
76,652 KB
testcase_04 AC 90 ms
77,160 KB
testcase_05 AC 178 ms
79,636 KB
testcase_06 AC 118 ms
78,848 KB
testcase_07 AC 363 ms
85,248 KB
testcase_08 AC 126 ms
78,504 KB
testcase_09 AC 242 ms
82,212 KB
testcase_10 AC 43 ms
55,328 KB
testcase_11 AC 44 ms
54,412 KB
testcase_12 AC 96 ms
76,976 KB
testcase_13 AC 92 ms
77,360 KB
testcase_14 AC 119 ms
77,788 KB
testcase_15 AC 106 ms
77,212 KB
testcase_16 AC 135 ms
77,680 KB
testcase_17 AC 119 ms
77,732 KB
testcase_18 AC 126 ms
77,900 KB
testcase_19 AC 128 ms
77,792 KB
testcase_20 AC 80 ms
75,152 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