結果

問題 No.1814 Uribo Road (Easy)
ユーザー first_vilfirst_vil
提出日時 2022-01-17 13:37:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 347 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-11-23 12:45:11
合計ジャッジ時間 8,951 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 49 ms
59,264 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 AC 42 ms
52,864 KB
testcase_07 AC 41 ms
52,480 KB
testcase_08 AC 43 ms
52,224 KB
testcase_09 AC 73 ms
69,376 KB
testcase_10 AC 67 ms
67,200 KB
testcase_11 AC 94 ms
76,672 KB
testcase_12 AC 140 ms
77,440 KB
testcase_13 AC 108 ms
77,056 KB
testcase_14 AC 149 ms
77,616 KB
testcase_15 AC 166 ms
76,480 KB
testcase_16 AC 220 ms
76,544 KB
testcase_17 AC 224 ms
76,544 KB
testcase_18 AC 258 ms
76,416 KB
testcase_19 AC 249 ms
76,544 KB
testcase_20 AC 347 ms
77,932 KB
testcase_21 AC 343 ms
77,764 KB
testcase_22 AC 273 ms
77,696 KB
testcase_23 AC 317 ms
77,952 KB
testcase_24 AC 209 ms
77,568 KB
testcase_25 AC 261 ms
77,516 KB
testcase_26 AC 224 ms
77,568 KB
testcase_27 AC 233 ms
77,680 KB
testcase_28 AC 227 ms
77,536 KB
testcase_29 AC 297 ms
77,312 KB
testcase_30 AC 226 ms
77,028 KB
testcase_31 AC 220 ms
77,056 KB
testcase_32 AC 125 ms
77,480 KB
testcase_33 AC 73 ms
70,016 KB
testcase_34 AC 61 ms
65,536 KB
testcase_35 AC 111 ms
77,148 KB
testcase_36 AC 95 ms
76,160 KB
testcase_37 AC 127 ms
77,256 KB
testcase_38 AC 148 ms
77,776 KB
testcase_39 AC 106 ms
76,996 KB
testcase_40 AC 112 ms
76,760 KB
testcase_41 AC 260 ms
77,696 KB
testcase_42 AC 226 ms
77,568 KB
testcase_43 AC 120 ms
77,308 KB
testcase_44 AC 132 ms
77,184 KB
testcase_45 AC 105 ms
76,496 KB
testcase_46 AC 221 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF=float("inf")
n,m,k=map(int,input().split())
q=[-1]*m
for i,r in enumerate(list(map(lambda x: int(x)-1,input().split()))):
    q[r]=i
wf=[[INF]*n for i in range(n)]
e=[334]*k
for i in range(m):
    a,b,c=map(int,input().split())
    a,b=a-1,b-1
    wf[a][b]=wf[b][a]=c
    if q[i]!=-1:
        e[q[i]]=(a,b,c)

for p in range(n):
    wf[p][p]=0
    for i in range(n):
        for j in range(n):
            wf[i][j]=min(wf[i][j],wf[i][p]+wf[p][j])

dp=[[INF]*n for i in range(2**k)]
dp[0][0]=0
for bit in range(2**k):
    for i in range(n):
        for j in range(n):
            dp[bit][j]=min(dp[bit][j],dp[bit][i]+wf[i][j])
    for i,(a,b,c) in enumerate(e):
        dp[1<<i|bit][a]=min(dp[1<<i|bit][a],dp[bit][b]+c)
        dp[1<<i|bit][b]=min(dp[1<<i|bit][b],dp[bit][a]+c)
print(dp[-1][-1])
0