結果
問題 | No.1812 Uribo Road |
ユーザー | Shirotsume |
提出日時 | 2021-12-25 18:51:23 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,296 bytes |
コンパイル時間 | 938 ms |
コンパイル使用メモリ | 82,524 KB |
実行使用メモリ | 850,024 KB |
最終ジャッジ日時 | 2024-09-21 21:54:13 |
合計ジャッジ時間 | 67,824 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4,941 ms
77,248 KB |
testcase_01 | AC | 4,942 ms
77,440 KB |
testcase_02 | AC | 4,940 ms
77,440 KB |
testcase_03 | WA | - |
testcase_04 | AC | 4,941 ms
77,056 KB |
testcase_05 | AC | 4,941 ms
77,440 KB |
testcase_06 | AC | 4,938 ms
77,184 KB |
testcase_07 | AC | 4,940 ms
77,408 KB |
testcase_08 | AC | 4,941 ms
78,976 KB |
testcase_09 | WA | - |
testcase_10 | AC | 4,941 ms
79,096 KB |
testcase_11 | AC | 4,940 ms
79,908 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 time t1 = time.time() import itertools import heapq N,M,K = map(int,input().split()) rlist = list([i-1 for i in map(int,input().split())]) route = [[] for _ in [0]*N] edge = [0]*M st = set([0,N-1]) for i in range(M): A,B,C = map(int,input().split()) A -= 1; B -= 1 if(i in rlist): edge[i] = [A,B,C] st.add(A); st.add(B) route[A].append((B,C)) route[B].append((A,C)) def dijkstra(route): dist = [[-1]*N for _ in [0]*N] for i in st: q = [(0,i)] cnt = 0 while(q and cnt < N): d,v = heapq.heappop(q) if(dist[i][v] == -1): cnt += 1 dist[i][v] = d for nv,nd in route[v]: heapq.heappush(q,(d + nd,nv)) return dist ans = 10 ** 9 import random rsum = sum(edge[i][2] for i in rlist) dist = dijkstra(route) while time.time() - t1 <= 4.9: random.shuffle(rlist) for bit in range(1 << K): s = rsum path = [0] for i in range(K): if(bit & (1 << i)): path.append(edge[rlist[i]][0]) path.append(edge[rlist[i]][1]) else: path.append(edge[rlist[i]][1]) path.append(edge[rlist[i]][0]) path.append(N-1) for i in range(0,len(path)-1,2): s += dist[path[i]][path[i+1]] if(ans > s): ans = s print(ans)