結果

問題 No.1690 Power Grid
ユーザー rlangevinrlangevin
提出日時 2023-02-14 23:37:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 667 ms / 3,000 ms
コード長 932 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 78,620 KB
最終ジャッジ日時 2024-07-17 11:15:53
合計ジャッジ時間 12,163 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,960 KB
testcase_01 AC 38 ms
52,720 KB
testcase_02 AC 57 ms
67,264 KB
testcase_03 AC 36 ms
52,132 KB
testcase_04 AC 37 ms
53,932 KB
testcase_05 AC 35 ms
53,000 KB
testcase_06 AC 556 ms
78,200 KB
testcase_07 AC 546 ms
78,268 KB
testcase_08 AC 550 ms
78,252 KB
testcase_09 AC 551 ms
78,432 KB
testcase_10 AC 624 ms
78,176 KB
testcase_11 AC 551 ms
78,244 KB
testcase_12 AC 37 ms
53,816 KB
testcase_13 AC 57 ms
68,112 KB
testcase_14 AC 124 ms
76,324 KB
testcase_15 AC 633 ms
78,172 KB
testcase_16 AC 639 ms
78,256 KB
testcase_17 AC 324 ms
77,276 KB
testcase_18 AC 248 ms
76,580 KB
testcase_19 AC 635 ms
78,172 KB
testcase_20 AC 665 ms
78,288 KB
testcase_21 AC 635 ms
78,360 KB
testcase_22 AC 638 ms
78,620 KB
testcase_23 AC 648 ms
78,552 KB
testcase_24 AC 665 ms
78,428 KB
testcase_25 AC 627 ms
78,188 KB
testcase_26 AC 667 ms
78,448 KB
testcase_27 AC 37 ms
53,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def popcount(n):
    cnt = 0
    while n:
        cnt += n & 1
        n //= 2
    return cnt

N, M, K = map(int, input().split())
A = list(map(int, input().split()))
inf = 10 ** 18
G = [[inf] * N for i in range(N)]
for i in range(M):
    X, Y, Z = map(int, input().split())
    X, Y = X - 1, Y - 1
    G[X][Y] = Z
    G[Y][X] = Z
    
for k in range(N):
    for i in range(N):
        for j in range(N):
            G[i][j] = min(G[i][j], G[i][k] + G[k][j])
            
N2 = 1 << N
dp = [inf] * N2
for i in range(N):
    dp[1 << i] = A[i]
    
for s in range(1, N2):
    for i in range(N):
        if (s >> i) & 1:
            continue
        d = inf
        for j in range(N):
            if (s >> j) & 1:
                d = min(d, G[i][j])                
        dp[s | 1 << i] = min(dp[s | 1 << i], dp[s] + A[i] + d)
     
ans = inf   
for s in range(1, N2):
    if popcount(s) == K:
        ans = min(ans, dp[s])
print(ans)
0