結果

問題 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
コンパイル時間 202 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-11-23 16:21:55
合計ジャッジ時間 68,114 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
16,128 KB
testcase_01 AC 44 ms
21,888 KB
testcase_02 AC 32 ms
16,000 KB
testcase_03 AC 32 ms
21,632 KB
testcase_04 AC 32 ms
22,272 KB
testcase_05 AC 32 ms
16,000 KB
testcase_06 AC 33 ms
16,000 KB
testcase_07 AC 29 ms
22,272 KB
testcase_08 AC 29 ms
15,872 KB
testcase_09 AC 63 ms
17,956 KB
testcase_10 AC 55 ms
15,872 KB
testcase_11 AC 158 ms
17,952 KB
testcase_12 AC 459 ms
16,000 KB
testcase_13 AC 239 ms
22,144 KB
testcase_14 AC 599 ms
16,000 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 414 ms
16,128 KB
testcase_33 AC 81 ms
22,016 KB
testcase_34 AC 47 ms
16,256 KB
testcase_35 AC 589 ms
10,624 KB
testcase_36 AC 119 ms
10,752 KB
testcase_37 AC 442 ms
10,752 KB
testcase_38 AC 862 ms
11,008 KB
testcase_39 AC 154 ms
10,880 KB
testcase_40 AC 370 ms
10,752 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 289 ms
10,752 KB
testcase_44 AC 909 ms
10,880 KB
testcase_45 AC 119 ms
10,880 KB
testcase_46 TLE -
権限があれば一括ダウンロードができます

ソースコード

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