結果
問題 | No.20 砂漠のオアシス |
ユーザー | terrafarm |
提出日時 | 2021-02-14 16:33:13 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,330 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 82,240 KB |
実行使用メモリ | 86,800 KB |
最終ジャッジ日時 | 2024-07-22 01:52:09 |
合計ジャッジ時間 | 5,025 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 93 ms
79,888 KB |
testcase_01 | AC | 97 ms
80,256 KB |
testcase_02 | AC | 96 ms
80,256 KB |
testcase_03 | AC | 138 ms
81,544 KB |
testcase_04 | AC | 161 ms
82,420 KB |
testcase_05 | AC | 333 ms
86,800 KB |
testcase_06 | AC | 273 ms
83,456 KB |
testcase_07 | AC | 273 ms
83,884 KB |
testcase_08 | AC | 274 ms
83,584 KB |
testcase_09 | AC | 271 ms
83,328 KB |
testcase_10 | WA | - |
testcase_11 | AC | 94 ms
80,256 KB |
testcase_12 | WA | - |
testcase_13 | AC | 153 ms
82,304 KB |
testcase_14 | AC | 165 ms
82,276 KB |
testcase_15 | AC | 160 ms
82,212 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 164 ms
81,792 KB |
testcase_20 | AC | 141 ms
81,664 KB |
ソースコード
import heapq import logging import sys from inspect import currentframe sys.setrecursionlimit(10 ** 6) input = sys.stdin.readline logging.basicConfig(level=logging.DEBUG) def dbg(*args): id2names = {id(v): k for k, v in currentframe().f_back.f_locals.items()} logging.debug(", ".join(id2names.get(id(arg), "???") + " = " + repr(arg) for arg in args)) def dijkstra_grid(sx, sy, grid): d = [[float('inf')] * n for _ in range(n)] d[sx][sy] = 0 pq = [(0, sx, sy)] while pq: c, x, y = heapq.heappop(pq) if d[x][y] < c: continue for dx, dy in ((-1, 0), (1, 0), (0, 1), (0, -1)): nx, ny = x + dx, y + dy if 0 <= nx < n and 0 <= ny < n and c + grid[nx][ny] < d[nx][ny]: d[nx][ny] = c + grid[nx][ny] heapq.heappush(pq, (d[nx][ny], nx, ny)) return d n, v, ox, oy = map(int, input().split()) l = [list(map(int, input().split())) for _ in range(n)] d1 = dijkstra_grid(0, 0, l) if ox == 0 and oy == 0: if d1[n - 1][n - 1] < v: print("YES") else: print("NO") else: ox -= 1 oy -= 1 d2 = dijkstra_grid(ox, oy, l) if d1[n - 1][n - 1] < v: print("YES") elif d1[ox][oy] < v and d2[n - 1][n - 1] < 2 * (v - d1[ox][oy]): print("YES") else: print("NO")