結果
問題 | No.20 砂漠のオアシス |
ユーザー | konchanksu |
提出日時 | 2020-05-01 00:22:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,441 bytes |
コンパイル時間 | 294 ms |
コンパイル使用メモリ | 13,056 KB |
実行使用メモリ | 12,672 KB |
最終ジャッジ日時 | 2024-05-10 03:28:30 |
合計ジャッジ時間 | 2,708 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
11,008 KB |
testcase_01 | AC | 31 ms
10,880 KB |
testcase_02 | AC | 31 ms
11,008 KB |
testcase_03 | AC | 39 ms
11,008 KB |
testcase_04 | AC | 40 ms
11,008 KB |
testcase_05 | AC | 216 ms
12,672 KB |
testcase_06 | AC | 63 ms
11,904 KB |
testcase_07 | AC | 250 ms
11,904 KB |
testcase_08 | AC | 91 ms
11,520 KB |
testcase_09 | AC | 212 ms
11,904 KB |
testcase_10 | AC | 30 ms
11,008 KB |
testcase_11 | WA | - |
testcase_12 | AC | 40 ms
11,136 KB |
testcase_13 | AC | 39 ms
11,136 KB |
testcase_14 | AC | 56 ms
11,136 KB |
testcase_15 | AC | 48 ms
11,136 KB |
testcase_16 | AC | 79 ms
11,136 KB |
testcase_17 | AC | 62 ms
11,008 KB |
testcase_18 | WA | - |
testcase_19 | AC | 77 ms
11,136 KB |
testcase_20 | WA | - |
ソースコード
import heapq N, V, Ox, Oy = map(int, input().split()) Ox -= 1 Oy -= 1 L = [[int(j) for j in input().split()] for i in range(N)] already = [[False for i in range(N)] for j in range(N)] already[0][0] = True queue = [] heapq.heappush(queue, (L[0][0], 0, 0)) course = [(0, 1), (1, 0), (-1, 0), (0, -1)] s = 0 while queue: tmp = heapq.heappop(queue) for i in course: y, x = tmp[1] + i[0], tmp[2] + i[1] if x < 0 or y < 0 or x >= N or y >= N: continue if already[y][x]: continue if (v := tmp[0] + L[y][x]) >= V: continue already[y][x] = True heapq.heappush(queue, (v, y, x)) if y == Oy and x == Ox: s = v if already[N - 1][N - 1]: print('YES') exit() if (Ox == -1 and Oy == -1) or not already[Oy][Ox]: print('NO') exit() already = [[False for i in range(N)] for j in range(N)] already[0][0] = True already[Oy][Ox] = True s -= V - s heapq.heappush(queue, (s, Oy, Ox)) while queue: tmp = heapq.heappop(queue) for i in course: y, x = tmp[1] + i[0], tmp[2] + i[1] if x < 0 or y < 0 or x >= N or y >= N: continue if already[y][x]: continue if (v := tmp[0] + L[y][x]) >= V: continue already[y][x] = True heapq.heappush(queue, (v, y, x)) if already[N - 1][N - 1]: print('YES') else: print('NO')