結果
問題 | No.1814 Uribo Road (Easy) |
ユーザー | MasKoaTS |
提出日時 | 2021-10-05 16:55:55 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,064 bytes |
コンパイル時間 | 84 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 32,004 KB |
最終ジャッジ日時 | 2024-11-21 22:48:44 |
合計ジャッジ時間 | 72,327 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
16,256 KB |
testcase_01 | AC | 98 ms
22,016 KB |
testcase_02 | AC | 31 ms
17,700 KB |
testcase_03 | AC | 31 ms
16,128 KB |
testcase_04 | AC | 30 ms
16,128 KB |
testcase_05 | AC | 31 ms
21,760 KB |
testcase_06 | AC | 35 ms
16,256 KB |
testcase_07 | AC | 30 ms
21,632 KB |
testcase_08 | AC | 32 ms
16,256 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 37 ms
30,404 KB |
testcase_11 | AC | 38 ms
11,520 KB |
testcase_12 | AC | 282 ms
19,108 KB |
testcase_13 | AC | 1,178 ms
17,024 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 176 ms
30,016 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | AC | 1,152 ms
30,100 KB |
testcase_20 | AC | 761 ms
19,712 KB |
testcase_21 | AC | 1,294 ms
23,424 KB |
testcase_22 | TLE | - |
testcase_23 | AC | 965 ms
25,728 KB |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | AC | 38 ms
11,008 KB |
testcase_34 | AC | 54 ms
10,880 KB |
testcase_35 | AC | 52 ms
12,416 KB |
testcase_36 | TLE | - |
testcase_37 | AC | 42 ms
11,904 KB |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
testcase_41 | AC | 146 ms
18,224 KB |
testcase_42 | AC | 170 ms
13,952 KB |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
testcase_45 | AC | 826 ms
11,392 KB |
testcase_46 | AC | 1,361 ms
23,148 KB |
ソースコード
import sys import itertools import heapq as hq N,M,K = map(int,sys.stdin.readline().split()) R = [i-1 for i in map(int,sys.stdin.readline().split())] route = [[] for _ in [0]*N] edge = [0]*M for i in range(M): A,B,C = map(int,sys.stdin.readline().split()) A -= 1; B -= 1 edge[i] = [A,B,C] route[A].append((B,C)) route[B].append((A,C)) def dijkstra(route,start,finish,n): path = [-1]*n q = [(0,start)] while(q): d,v = hq.heappop(q) if(path[v] == -1): path[v] = d if(v == finish): break for nv,dist in route[v]: hq.heappush(q,(d+dist,nv)) return path[finish] ans = float("inf") rsum = sum(edge[i][2] for i in R) for rlist in itertools.permutations(R): 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) s += sum(dijkstra(route,path[i],path[i+1],N) for i in range(0,len(path)-1,2)) if(ans > s): ans = s print(ans)