結果

問題 No.1814 Uribo Road (Easy)
ユーザー first_vilfirst_vil
提出日時 2022-01-17 13:37:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-05-02 18:57:59
合計ジャッジ時間 8,329 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,480 KB
testcase_01 AC 43 ms
58,496 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 72 ms
69,248 KB
testcase_10 AC 67 ms
66,944 KB
testcase_11 AC 95 ms
76,416 KB
testcase_12 AC 139 ms
77,312 KB
testcase_13 AC 112 ms
76,292 KB
testcase_14 AC 145 ms
77,568 KB
testcase_15 AC 159 ms
76,160 KB
testcase_16 AC 216 ms
76,672 KB
testcase_17 AC 219 ms
76,672 KB
testcase_18 AC 248 ms
76,544 KB
testcase_19 AC 237 ms
76,416 KB
testcase_20 AC 319 ms
77,824 KB
testcase_21 AC 312 ms
77,632 KB
testcase_22 AC 250 ms
77,696 KB
testcase_23 AC 288 ms
77,696 KB
testcase_24 AC 204 ms
77,696 KB
testcase_25 AC 256 ms
77,184 KB
testcase_26 AC 211 ms
77,824 KB
testcase_27 AC 217 ms
77,312 KB
testcase_28 AC 219 ms
77,184 KB
testcase_29 AC 281 ms
77,696 KB
testcase_30 AC 207 ms
76,544 KB
testcase_31 AC 211 ms
76,928 KB
testcase_32 AC 138 ms
77,184 KB
testcase_33 AC 75 ms
69,504 KB
testcase_34 AC 64 ms
65,664 KB
testcase_35 AC 112 ms
76,800 KB
testcase_36 AC 94 ms
76,288 KB
testcase_37 AC 120 ms
77,184 KB
testcase_38 AC 136 ms
77,696 KB
testcase_39 AC 101 ms
76,752 KB
testcase_40 AC 114 ms
76,744 KB
testcase_41 AC 240 ms
77,312 KB
testcase_42 AC 216 ms
77,184 KB
testcase_43 AC 114 ms
76,852 KB
testcase_44 AC 128 ms
76,672 KB
testcase_45 AC 101 ms
76,428 KB
testcase_46 AC 202 ms
77,184 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