結果

問題 No.1814 Uribo Road (Easy)
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 12:57:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 909 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,928 KB
最終ジャッジ日時 2024-05-02 21:35:05
合計ジャッジ時間 7,624 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,332 KB
testcase_01 AC 58 ms
62,080 KB
testcase_02 AC 39 ms
52,304 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 44 ms
60,288 KB
testcase_07 AC 35 ms
52,352 KB
testcase_08 AC 34 ms
52,352 KB
testcase_09 AC 57 ms
66,944 KB
testcase_10 AC 54 ms
64,512 KB
testcase_11 AC 79 ms
76,204 KB
testcase_12 AC 120 ms
77,668 KB
testcase_13 AC 86 ms
76,428 KB
testcase_14 AC 118 ms
77,288 KB
testcase_15 AC 133 ms
76,492 KB
testcase_16 AC 169 ms
76,764 KB
testcase_17 AC 178 ms
76,972 KB
testcase_18 AC 211 ms
77,056 KB
testcase_19 AC 195 ms
76,800 KB
testcase_20 AC 278 ms
77,904 KB
testcase_21 AC 292 ms
77,552 KB
testcase_22 AC 218 ms
76,928 KB
testcase_23 AC 262 ms
77,928 KB
testcase_24 AC 183 ms
77,424 KB
testcase_25 AC 226 ms
77,424 KB
testcase_26 AC 172 ms
77,016 KB
testcase_27 AC 172 ms
76,672 KB
testcase_28 AC 178 ms
76,928 KB
testcase_29 AC 238 ms
76,788 KB
testcase_30 AC 165 ms
76,680 KB
testcase_31 AC 166 ms
76,944 KB
testcase_32 AC 98 ms
76,824 KB
testcase_33 AC 56 ms
66,688 KB
testcase_34 AC 46 ms
62,848 KB
testcase_35 AC 95 ms
76,672 KB
testcase_36 AC 68 ms
72,704 KB
testcase_37 AC 121 ms
77,652 KB
testcase_38 AC 127 ms
77,660 KB
testcase_39 AC 84 ms
76,724 KB
testcase_40 AC 112 ms
77,680 KB
testcase_41 AC 237 ms
77,468 KB
testcase_42 AC 205 ms
77,524 KB
testcase_43 AC 100 ms
76,452 KB
testcase_44 AC 106 ms
77,056 KB
testcase_45 AC 80 ms
76,928 KB
testcase_46 AC 191 ms
77,440 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