結果
問題 | No.20 砂漠のオアシス |
ユーザー | rpy3cpp |
提出日時 | 2015-08-08 10:49:29 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,250 bytes |
コンパイル時間 | 188 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 13,056 KB |
最終ジャッジ日時 | 2024-10-13 05:24:31 |
合計ジャッジ時間 | 2,024 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,624 KB |
testcase_01 | AC | 28 ms
10,624 KB |
testcase_02 | AC | 32 ms
10,624 KB |
testcase_03 | AC | 33 ms
10,752 KB |
testcase_04 | AC | 34 ms
10,752 KB |
testcase_05 | AC | 138 ms
12,544 KB |
testcase_06 | AC | 50 ms
11,776 KB |
testcase_07 | AC | 156 ms
13,056 KB |
testcase_08 | AC | 66 ms
11,776 KB |
testcase_09 | AC | 139 ms
12,800 KB |
testcase_10 | AC | 29 ms
10,752 KB |
testcase_11 | WA | - |
testcase_12 | AC | 33 ms
10,880 KB |
testcase_13 | AC | 34 ms
10,880 KB |
testcase_14 | AC | 43 ms
10,880 KB |
testcase_15 | AC | 38 ms
10,880 KB |
testcase_16 | AC | 55 ms
11,136 KB |
testcase_17 | AC | 48 ms
10,880 KB |
testcase_18 | AC | 50 ms
11,008 KB |
testcase_19 | AC | 55 ms
11,136 KB |
testcase_20 | AC | 30 ms
10,624 KB |
ソースコード
import heapq def read_data(): N, V, Ox, Oy = map(int, input().split()) data = [list(map(int, input().split())) for n in range(N)] return N, V, Ox - 1, Oy - 1, data def solve(N, V, Ox, Oy, data): Sx, Sy = 0, 0 Gx, Gy = N - 1, N - 1 distS = dijkstra(Sx, Sy, data, N, V) if distS[Gx][Gy] < V: return True if Ox == -1 and Oy == -1: return False newV = (V - distS[Ox][Oy]) * 2 if newV <= 0: return False distO = dijkstra(Ox, Oy, data, N, newV) if distO[Gx][Gy] < newV: return True return False def dijkstra(x, y, data, N, V): pq = [(0, x, y)] dist = [[float('inf')] * N for n in range(N)] dist[0][0] = 0 while pq: d, x, y = heapq.heappop(pq) for nx, ny in [(x-1, y), (x+1, y), (x, y-1), (x, y+1)]: if nx < 0 or nx >= N or ny < 0 or ny >= N: continue newd = d + data[ny][nx] if newd >= V or newd >= dist[nx][ny]: continue dist[nx][ny] = newd heapq.heappush(pq, (newd, nx, ny)) return dist if __name__ == '__main__': N, V, Ox, Oy, data = read_data() if solve(N, V, Ox, Oy, data): print('YES') else: print('NO')