結果

問題 No.20 砂漠のオアシス
ユーザー zimphazimpha
提出日時 2017-12-09 01:55:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 822 ms / 5,000 ms
コード長 985 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,552 KB
最終ジャッジ日時 2024-11-29 22:24:47
合計ジャッジ時間 6,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
66,816 KB
testcase_01 AC 79 ms
73,984 KB
testcase_02 AC 75 ms
72,872 KB
testcase_03 AC 115 ms
78,848 KB
testcase_04 AC 154 ms
79,616 KB
testcase_05 AC 822 ms
88,552 KB
testcase_06 AC 715 ms
88,112 KB
testcase_07 AC 726 ms
88,228 KB
testcase_08 AC 624 ms
86,568 KB
testcase_09 AC 582 ms
85,932 KB
testcase_10 AC 64 ms
66,688 KB
testcase_11 AC 65 ms
66,944 KB
testcase_12 AC 148 ms
79,488 KB
testcase_13 AC 142 ms
79,872 KB
testcase_14 AC 147 ms
79,744 KB
testcase_15 AC 171 ms
79,488 KB
testcase_16 AC 199 ms
80,384 KB
testcase_17 AC 170 ms
80,032 KB
testcase_18 AC 181 ms
80,640 KB
testcase_19 AC 187 ms
80,512 KB
testcase_20 AC 121 ms
79,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from queue import Queue

n, v, oy, ox = list(map(int, input().split()))
a = [list(map(int, input().split())) for i in range(n)]

def get_dist(sx, sy):
  if sx < 0:
    return None
  q = Queue()
  q.put((sx, sy))
  dist = [[1e9] * n for i in range(n)]
  mark = [[0] * n for i in range(n)]
  dist[sx][sy] = 0
  mark[sx][sy] = 1
  dx = [0, 0, 1, -1]
  dy = [1, -1, 0, 0]
  while not q.empty():
    x, y = q.get()
    mark[x][y] = 0
    for i in range(4):
      xx, yy = x + dx[i], y + dy[i]
      if xx < 0 or xx >= n or yy < 0 or yy >= n:
        continue
      cost = dist[x][y] + a[xx][yy]
      if dist[xx][yy] > cost:
        dist[xx][yy] = cost
        if not mark[xx][yy]:
          mark[xx][yy] = 1
          q.put((xx, yy))
  return dist

oy -= 1
ox -= 1
d1 = get_dist(0, 0)
d2 = get_dist(ox, oy)
if d1[n - 1][n - 1] < v:
  print("YES")
elif d2 and d1[ox][oy] < v:
  v = (v - d1[ox][oy]) * 2
  if d2[n - 1][n - 1] < v:
    print("YES")
  else:
    print("NO")
else:
  print("NO")
0