結果

問題 No.1814 Uribo Road (Easy)
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 12:57:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 909 bytes
コンパイル時間 833 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,064 KB
最終ジャッジ日時 2024-11-23 16:22:48
合計ジャッジ時間 8,832 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 51 ms
61,312 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 41 ms
52,608 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 AC 47 ms
60,032 KB
testcase_07 AC 39 ms
51,712 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 65 ms
67,200 KB
testcase_10 AC 60 ms
64,640 KB
testcase_11 AC 93 ms
76,800 KB
testcase_12 AC 132 ms
77,824 KB
testcase_13 AC 99 ms
76,600 KB
testcase_14 AC 133 ms
77,952 KB
testcase_15 AC 145 ms
77,056 KB
testcase_16 AC 191 ms
76,912 KB
testcase_17 AC 201 ms
76,800 KB
testcase_18 AC 228 ms
77,056 KB
testcase_19 AC 223 ms
77,056 KB
testcase_20 AC 311 ms
77,824 KB
testcase_21 AC 318 ms
77,768 KB
testcase_22 AC 245 ms
76,928 KB
testcase_23 AC 295 ms
77,952 KB
testcase_24 AC 211 ms
77,440 KB
testcase_25 AC 256 ms
77,696 KB
testcase_26 AC 192 ms
77,000 KB
testcase_27 AC 198 ms
77,056 KB
testcase_28 AC 199 ms
76,872 KB
testcase_29 AC 267 ms
77,056 KB
testcase_30 AC 191 ms
77,268 KB
testcase_31 AC 186 ms
77,000 KB
testcase_32 AC 110 ms
76,568 KB
testcase_33 AC 64 ms
66,432 KB
testcase_34 AC 56 ms
63,104 KB
testcase_35 AC 107 ms
76,544 KB
testcase_36 AC 78 ms
72,832 KB
testcase_37 AC 138 ms
77,696 KB
testcase_38 AC 151 ms
78,064 KB
testcase_39 AC 93 ms
76,928 KB
testcase_40 AC 122 ms
77,356 KB
testcase_41 AC 266 ms
77,952 KB
testcase_42 AC 228 ms
77,440 KB
testcase_43 AC 107 ms
76,544 KB
testcase_44 AC 117 ms
77,016 KB
testcase_45 AC 89 ms
76,800 KB
testcase_46 AC 209 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations,product
n,m,k=map(int,input().split())
r=list(map(int,input().split()))
inf=float('inf')
d=[[inf]*n for _ in range(n)]
for i in range(n):
    d[i][i]=0
path=[]
must_cost=0
for i in range(m):
    a,b,c=map(int,input().split())
    a-=1;b-=1
    d[a][b]=c
    d[b][a]=c
    if i+1 in r:
        path.append((a,b))
        must_cost+=c
for z in range(n):
    for i in range(n):
        for j in range(n):
            d[i][j]=min(d[i][j],d[i][z]+d[z][j])
ans=inf
for seq in permutations(range(k)):#通り順
    for bit in product(range(2),repeat=k):
        now=0
        now_cost=must_cost
        for i in range(k):
            x,y=path[seq[i]]
            if bit[i]==1:
                now_cost+=d[now][x]
                now=y
            else:
                now_cost+=d[now][y]
                now=x
        now_cost+=d[now][n-1]
        ans=min(ans,now_cost)
print(ans)
0