結果
問題 | No.1812 Uribo Road |
ユーザー | Shirotsume |
提出日時 | 2021-12-30 00:19:21 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,644 bytes |
コンパイル時間 | 458 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 742,360 KB |
最終ジャッジ日時 | 2024-10-04 20:18:23 |
合計ジャッジ時間 | 9,462 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
54,628 KB |
testcase_01 | AC | 35 ms
53,692 KB |
testcase_02 | AC | 34 ms
53,236 KB |
testcase_03 | AC | 249 ms
79,784 KB |
testcase_04 | AC | 36 ms
53,496 KB |
testcase_05 | WA | - |
testcase_06 | AC | 32 ms
53,100 KB |
testcase_07 | WA | - |
testcase_08 | AC | 394 ms
81,700 KB |
testcase_09 | AC | 621 ms
87,604 KB |
testcase_10 | AC | 301 ms
79,612 KB |
testcase_11 | AC | 201 ms
78,600 KB |
testcase_12 | MLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
ソースコード
import heapq import sys input = lambda: sys.stdin.readline().rstrip() n, m, k = map(int,input().split()) r = list(map(int,input().split())) for i in range(k): r[i] -= 1 graph = [[] for _ in range(n)] r_n = len(r) r_edges = {} r.sort() ss = 0 for i in range(m): a, b, c = map(int,input().split()) if b < a: a, b = b, a graph[a - 1].append((b - 1, c)) graph[b - 1].append((a - 1, c)) ss += c if i in r: r_edges[(a - 1, b - 1)] = r.index(i) def dijkstra(n, graph): INF = 10 ** 15 dist = [[INF] * (2 ** r_n) for _ in range(n)] dist[0][0] = 0 hq = [] heapq.heappush(hq, (0, 0, 0)) visit = [[False] * (2 ** r_n) for _ in range(n)] visit[0][0] = True while hq: c, v, bit = heapq.heappop(hq) if c > dist[v][bit]: continue elif (bit < 2 ** r_n - 1 and c > ss): continue visit[v][bit] = True for to, cost in graph[v]: if (min(v, to), max(v, to)) in r_edges: msk = 1 << r_edges[(min(v, to), max(v, to))] if visit[to][bit | msk] == False and dist[v][bit] + cost < dist[to][bit | msk]: dist[to][bit | msk] = dist[v][bit] + cost heapq.heappush(hq, (dist[to][bit | msk], to, bit | msk)) elif visit[to][bit] == False and dist[v][bit] + cost < dist[to][bit]: dist[to][bit] = dist[v][bit] + cost heapq.heappush(hq, (dist[to][bit], to, bit)) return dist ans = dijkstra(n, graph) print(ans[n - 1][2 ** r_n - 1])