結果

問題 No.1814 Uribo Road (Easy)
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 12:56:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 909 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-05-02 21:34:16
合計ジャッジ時間 8,761 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
16,128 KB
testcase_01 AC 37 ms
10,624 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 25 ms
10,880 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 24 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 56 ms
10,880 KB
testcase_10 AC 50 ms
10,752 KB
testcase_11 AC 155 ms
10,752 KB
testcase_12 AC 424 ms
10,752 KB
testcase_13 AC 219 ms
10,752 KB
testcase_14 AC 601 ms
10,752 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

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