結果

問題 No.1814 Uribo Road (Easy)
ユーザー ShirotsumeShirotsume
提出日時 2021-11-04 22:52:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 1,506 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-11-21 22:57:42
合計ジャッジ時間 11,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 54 ms
61,696 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 49 ms
60,160 KB
testcase_07 AC 42 ms
52,352 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 79 ms
69,888 KB
testcase_10 AC 74 ms
67,456 KB
testcase_11 AC 110 ms
76,672 KB
testcase_12 AC 137 ms
77,056 KB
testcase_13 AC 116 ms
76,672 KB
testcase_14 AC 140 ms
76,800 KB
testcase_15 AC 250 ms
74,112 KB
testcase_16 AC 369 ms
76,672 KB
testcase_17 AC 384 ms
76,416 KB
testcase_18 AC 414 ms
76,288 KB
testcase_19 AC 417 ms
76,672 KB
testcase_20 AC 333 ms
77,184 KB
testcase_21 AC 374 ms
77,184 KB
testcase_22 AC 329 ms
78,720 KB
testcase_23 AC 360 ms
77,568 KB
testcase_24 AC 337 ms
79,104 KB
testcase_25 AC 336 ms
79,360 KB
testcase_26 AC 346 ms
79,360 KB
testcase_27 AC 376 ms
79,744 KB
testcase_28 AC 376 ms
79,872 KB
testcase_29 AC 378 ms
80,256 KB
testcase_30 AC 375 ms
79,744 KB
testcase_31 AC 372 ms
79,744 KB
testcase_32 AC 126 ms
77,056 KB
testcase_33 AC 78 ms
68,608 KB
testcase_34 AC 68 ms
66,176 KB
testcase_35 AC 139 ms
77,184 KB
testcase_36 AC 102 ms
76,544 KB
testcase_37 AC 144 ms
77,440 KB
testcase_38 AC 176 ms
77,824 KB
testcase_39 AC 112 ms
76,536 KB
testcase_40 AC 142 ms
77,568 KB
testcase_41 AC 354 ms
79,360 KB
testcase_42 AC 255 ms
77,824 KB
testcase_43 AC 118 ms
77,312 KB
testcase_44 AC 155 ms
77,184 KB
testcase_45 AC 110 ms
76,784 KB
testcase_46 AC 348 ms
79,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#嘘

INF = 10 ** 9

N, M, K = map(int,input().split())

#assert (1 <= N <= 200 and K <= 5 and 1 <= K <= M <= N * (N - 1) // 2)

dist = [[0 if i == j else INF for i in range(N)] for j in range(N)]

R = list(map(int,input().split()))
points = []
nes_cost = 0
check_set = set()
for i in range(M):
    A, B, C = map(int,input().split())
    #assert(1 <= C <= 10 ** 4 and 1 <= A <= N and 1 <= B <= N and A != B)
    #assert((A, B) not in check_set and (B, A) not in check_set)
    if i + 1 in R:
        nes_cost += C
        points.append((A - 1, B - 1))


    check_set.add((A, B))
    dist[A - 1][B - 1] = C
    dist[B - 1][A - 1] = C

for i in range(N):
    for j in range(N):
        for k in range(N):
            dist[i][j] = min(dist[i][j], dist[i][k] + dist[k][j])


for i in range(N):
    for j in range(N):
        for k in range(N):
            dist[i][j] = min(dist[i][j], dist[i][k] + dist[k][j])


for i in range(N):
    for j in range(N):
        for k in range(N):
            dist[i][j] = min(dist[i][j], dist[i][k] + dist[k][j])


import itertools
ans = INF
for v in itertools.permutations(points):
    for i in range(2 ** K):
        now = 0
        now_cost = nes_cost
        for j in range(K):
            x, y = v[j]
            if 1 & (i >> j):
                now_cost += dist[now][x]
                now = y
            else:
                now_cost += dist[now][y]
                now = x
        now_cost += dist[now][N - 1]
        
        ans = min(ans, now_cost)
print(ans)


0