結果
問題 | No.20 砂漠のオアシス |
ユーザー | sotanishy |
提出日時 | 2021-03-16 22:52:30 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 911 bytes |
コンパイル時間 | 221 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 81,024 KB |
最終ジャッジ日時 | 2024-11-08 18:39:33 |
合計ジャッジ時間 | 3,905 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
52,608 KB |
testcase_01 | AC | 45 ms
52,992 KB |
testcase_02 | AC | 44 ms
52,992 KB |
testcase_03 | AC | 100 ms
76,544 KB |
testcase_04 | AC | 133 ms
76,832 KB |
testcase_05 | AC | 300 ms
81,024 KB |
testcase_06 | AC | 237 ms
77,696 KB |
testcase_07 | AC | 236 ms
77,824 KB |
testcase_08 | AC | 232 ms
77,952 KB |
testcase_09 | AC | 232 ms
78,336 KB |
testcase_10 | AC | 43 ms
52,608 KB |
testcase_11 | AC | 43 ms
52,864 KB |
testcase_12 | WA | - |
testcase_13 | AC | 126 ms
76,708 KB |
testcase_14 | AC | 131 ms
76,852 KB |
testcase_15 | AC | 126 ms
76,448 KB |
testcase_16 | AC | 144 ms
76,692 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 107 ms
76,160 KB |
ソースコード
from heapq import heappush, heappop import sys input = sys.stdin.readline def dijkstra(si, sj): INF = 10**18 dist = [[INF] * N for _ in range(N)] dist[si][sj] = 0 pq = [(0, si, sj)] while pq: d, i, j = heappop(pq) if dist[i][j] < d: continue for di, dj in [(1, 0), (0, 1), (-1, 0), (0, -1)]: ni, nj = i + di, j + dj if 0 <= ni < N and 0 <= nj < N and dist[ni][nj] > d + L[ni][nj]: dist[ni][nj] = d + L[ni][nj] heappush(pq, (d + L[ni][nj], ni, nj)) return dist N, V, Ox, Oy = map(int, input().split()) Ox -= 1 Oy -= 1 L = [list(map(int, input().split())) for _ in range(N)] dist0 = dijkstra(0, 0) if Ox == Oy == -1: print('YES' if dist0[N-1][N-1] < V else 'NO') exit() dist1 = dijkstra(Oy, Ox) print('YES' if dist0[N-1][N-1] < V or (V - dist0[Ox][Oy]) * 2 > dist1[N-1][N-1] else 'NO')