結果

問題 No.20 砂漠のオアシス
ユーザー noriocnorioc
提出日時 2024-08-23 01:46:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,082 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 84,868 KB
最終ジャッジ日時 2024-08-23 01:46:20
合計ジャッジ時間 4,213 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,724 KB
testcase_01 AC 46 ms
54,916 KB
testcase_02 AC 45 ms
55,056 KB
testcase_03 AC 88 ms
76,900 KB
testcase_04 AC 90 ms
76,944 KB
testcase_05 AC 115 ms
77,652 KB
testcase_06 AC 119 ms
78,412 KB
testcase_07 AC 339 ms
84,868 KB
testcase_08 AC 127 ms
78,616 KB
testcase_09 AC 251 ms
82,140 KB
testcase_10 WA -
testcase_11 AC 43 ms
55,284 KB
testcase_12 AC 98 ms
76,972 KB
testcase_13 AC 97 ms
76,768 KB
testcase_14 AC 122 ms
77,852 KB
testcase_15 AC 105 ms
76,964 KB
testcase_16 AC 133 ms
77,724 KB
testcase_17 AC 119 ms
77,696 KB
testcase_18 AC 127 ms
77,792 KB
testcase_19 WA -
testcase_20 AC 81 ms
74,816 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