結果
問題 | No.20 砂漠のオアシス |
ユーザー | zimpha |
提出日時 | 2017-12-09 01:55:45 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 853 ms / 5,000 ms |
コード長 | 985 bytes |
コンパイル時間 | 204 ms |
コンパイル使用メモリ | 82,280 KB |
実行使用メモリ | 88,616 KB |
最終ジャッジ日時 | 2024-05-07 07:31:16 |
合計ジャッジ時間 | 7,237 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 66 ms
67,492 KB |
testcase_01 | AC | 80 ms
74,168 KB |
testcase_02 | AC | 76 ms
73,196 KB |
testcase_03 | AC | 113 ms
79,008 KB |
testcase_04 | AC | 152 ms
79,652 KB |
testcase_05 | AC | 853 ms
88,548 KB |
testcase_06 | AC | 722 ms
87,976 KB |
testcase_07 | AC | 737 ms
88,616 KB |
testcase_08 | AC | 620 ms
86,824 KB |
testcase_09 | AC | 609 ms
86,064 KB |
testcase_10 | AC | 68 ms
68,224 KB |
testcase_11 | AC | 68 ms
67,636 KB |
testcase_12 | AC | 150 ms
79,524 KB |
testcase_13 | AC | 144 ms
79,764 KB |
testcase_14 | AC | 145 ms
79,904 KB |
testcase_15 | AC | 156 ms
79,828 KB |
testcase_16 | AC | 195 ms
80,612 KB |
testcase_17 | AC | 171 ms
79,776 KB |
testcase_18 | AC | 182 ms
80,196 KB |
testcase_19 | AC | 186 ms
80,448 KB |
testcase_20 | AC | 120 ms
79,432 KB |
ソースコード
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")