結果

問題 No.20 砂漠のオアシス
ユーザー qibqib
提出日時 2023-01-19 01:14:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 319 ms / 5,000 ms
コード長 1,017 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 81,152 KB
最終ジャッジ日時 2024-06-12 00:41:22
合計ジャッジ時間 4,040 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 46 ms
53,248 KB
testcase_02 AC 43 ms
52,992 KB
testcase_03 AC 104 ms
76,672 KB
testcase_04 AC 125 ms
76,700 KB
testcase_05 AC 319 ms
81,152 KB
testcase_06 AC 248 ms
78,464 KB
testcase_07 AC 248 ms
78,336 KB
testcase_08 AC 162 ms
77,312 KB
testcase_09 AC 245 ms
78,592 KB
testcase_10 AC 42 ms
52,352 KB
testcase_11 AC 43 ms
52,736 KB
testcase_12 AC 122 ms
76,672 KB
testcase_13 AC 131 ms
76,968 KB
testcase_14 AC 137 ms
77,248 KB
testcase_15 AC 134 ms
77,072 KB
testcase_16 AC 150 ms
77,572 KB
testcase_17 AC 141 ms
77,280 KB
testcase_18 AC 143 ms
77,012 KB
testcase_19 AC 149 ms
77,204 KB
testcase_20 AC 114 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

INF = 1 << 60

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

dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]

def cost(sx, sy, gx, gy):
  dist = [[INF for _ in range(n)] for _ in range(n)]
  dist[sx][sy] = 0
  hp = [(0, sx, sy)]
  while len(hp) > 0:
    cd, cx, cy = heapq.heappop(hp)
    if cd > dist[cx][cy]:
      continue

    for i in range(4):
      nx = cx + dx[i]
      ny = cy + dy[i]
      if nx < 0 or nx >= n or ny < 0 or ny >= n:
        continue
      if dist[nx][ny] > dist[cx][cy] + l[nx][ny]:
        dist[nx][ny] = dist[cx][cy] + l[nx][ny]
        heapq.heappush(hp, (dist[nx][ny], nx, ny))

  return dist[gx][gy]

if ox == -1 and oy == -1:
  rest = v - cost(0, 0, n - 1, n - 1)
  if rest <= 0:
    print("NO")
  else:
    print("YES")
else:
  rest = v - cost(0, 0, oy, ox)
  if rest <= 0:
    print("NO")
  else:
    rest = 2 * rest - cost(oy, ox, n - 1, n - 1)
    if rest <= 0:
      print("NO")
    else:
      print("YES")
0