結果
問題 | No.1190 Points |
ユーザー | AndrewK |
提出日時 | 2020-08-01 10:54:28 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,395 bytes |
コンパイル時間 | 131 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 52,676 KB |
最終ジャッジ日時 | 2024-07-07 19:43:01 |
合計ジャッジ時間 | 24,785 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
10,880 KB |
testcase_01 | AC | 28 ms
11,008 KB |
testcase_02 | AC | 28 ms
10,880 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 1,611 ms
48,512 KB |
testcase_10 | AC | 613 ms
51,456 KB |
testcase_11 | AC | 1,175 ms
38,396 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
import heapq inf = 3*(10 ^ 18) n, m, p = map(int, input().split()) s, g = map(int, input().split()) road = [[0 for j in range(0)] for i in range(n + 1)] kyo_s = [[inf for j in range(2)] for i in range(n + 1)] kyo_g = [[inf for j in range(2)] for i in range(n + 1)] kyo_s[s][0] = 0 kyo_g[g][0] = 0 ans = [] for _ in range(m): u, v = map(int, input().split()) road[u].append(v) road[v].append(u) q = [] heapq.heapify(q) heapq.heappush(q, [0, s]) while len(q): k = heapq.heappop(q) cnt = k[0] x = k[1] if kyo_s[x][cnt & 1] < cnt: continue cnt += 1 for i in road[x]: if kyo_s[i][cnt & 1] > cnt: heapq.heappush(q, [cnt, i]) kyo_s[i][cnt & 1] = cnt heapq.heappush(q, [0, g]) while len(q): k = heapq.heappop(q) cnt = k[0] x = k[1] if kyo_g[x][cnt & 1] < cnt: continue cnt += 1 for i in road[x]: if kyo_g[i][cnt & 1] > cnt: heapq.heappush(q, [cnt, i]) kyo_g[i][cnt & 1] = cnt for i in range(1, n+1): if p & 1: odd = min(kyo_s[i][0] + kyo_g[i][1], kyo_s[i][1] + kyo_g[i][0]) if odd <= p: ans.append(i) else: even = min(kyo_s[i][0] + kyo_g[i][0], kyo_s[i][1] + kyo_g[i][1]) if even <= p: ans.append(i) if (len(ans) == 0): print(-1) else: print(len(ans)) for i in ans: print(i)