結果

問題 No.20 砂漠のオアシス
ユーザー KudeKude
提出日時 2020-09-04 04:39:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 948 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 159,088 KB
最終ジャッジ日時 2024-11-24 17:20:40
合計ジャッジ時間 73,964 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
139,392 KB
testcase_01 AC 75 ms
78,804 KB
testcase_02 AC 57 ms
147,196 KB
testcase_03 AC 446 ms
158,260 KB
testcase_04 AC 2,104 ms
159,088 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 WA -
testcase_11 AC 37 ms
53,692 KB
testcase_12 WA -
testcase_13 AC 2,410 ms
77,296 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 639 ms
154,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, v, ox, oy = map(int, input().split())
ox -= 1
oy -= 1
l = [list(map(int, input().split())) for _ in range(n)]

INF = 10 ** 18
from heapq import heappush, heappop
dx = [1,0,-1,0]
dy = [0,1,0,-1]
def min_cost(sx, sy, gx, gy):
    dp = [[INF] * n for _ in range(n)]
    dp[sx][sy] = 0
    q = [(0, sx, sy)]
    while q:
        cost, x, y = q.pop()
        if cost > dp[x][y]:
            continue
        for k in range(4):
            nx = x + dx[k]
            ny = y + dy[k]
            if not (0 <= nx < n and 0 <= ny < n):
                continue
            nc = cost + l[nx][ny]
            if nc < dp[nx][ny]:
                dp[nx][ny] = nc
                heappush(q, (nc, nx, ny))
    return dp[gx][gy]
ok = False
if min_cost(0, 0, n-1, n-1) < v:
    ok = True
if ox >= 0:
    nv = v - min_cost(0, 0, ox, oy)
    if nv >= 1:
        nv *= 2
        if min_cost(ox, oy, n-1, n-1) < nv:
            ok = True
print('YES' if ok else 'NO')
0