結果

問題 No.1690 Power Grid
ユーザー ayaoniayaoni
提出日時 2021-09-24 22:47:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 897 ms / 3,000 ms
コード長 1,327 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 79,240 KB
最終ジャッジ日時 2024-07-05 11:04:58
合計ジャッジ時間 13,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,320 KB
testcase_01 AC 37 ms
52,740 KB
testcase_02 AC 64 ms
73,816 KB
testcase_03 AC 36 ms
52,736 KB
testcase_04 AC 36 ms
52,624 KB
testcase_05 AC 35 ms
52,760 KB
testcase_06 AC 511 ms
78,528 KB
testcase_07 AC 517 ms
78,404 KB
testcase_08 AC 513 ms
78,516 KB
testcase_09 AC 518 ms
78,648 KB
testcase_10 AC 771 ms
78,372 KB
testcase_11 AC 602 ms
78,840 KB
testcase_12 AC 36 ms
53,288 KB
testcase_13 AC 65 ms
71,888 KB
testcase_14 AC 149 ms
76,620 KB
testcase_15 AC 897 ms
78,472 KB
testcase_16 AC 582 ms
78,724 KB
testcase_17 AC 354 ms
78,208 KB
testcase_18 AC 220 ms
77,344 KB
testcase_19 AC 731 ms
78,820 KB
testcase_20 AC 633 ms
79,112 KB
testcase_21 AC 729 ms
78,364 KB
testcase_22 AC 854 ms
78,576 KB
testcase_23 AC 749 ms
78,560 KB
testcase_24 AC 886 ms
78,884 KB
testcase_25 AC 885 ms
79,240 KB
testcase_26 AC 792 ms
78,824 KB
testcase_27 AC 36 ms
53,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**7)

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

inf = 10**18
dist = [[inf]*N for _ in range(N)]
for _ in range(M):
    X,Y,Z = map(int,input().split())
    X -= 1
    Y -= 1
    dist[X][Y] = Z
    dist[Y][X] = Z
for k in range(N):
    for i in range(N):
        for j in range(N):
            dist[i][j] = min(dist[i][j],dist[i][k]+dist[k][j])


def bit_count(n):
    c = (n & 0x5555555555555555) + ((n >> 1) & 0x5555555555555555)
    c = (c & 0x3333333333333333) + ((c >> 2) & 0x3333333333333333)
    c = (c & 0x0f0f0f0f0f0f0f0f) + ((c >> 4) & 0x0f0f0f0f0f0f0f0f)
    c = (c & 0x00ff00ff00ff00ff) + ((c >> 8) & 0x00ff00ff00ff00ff)
    c = (c & 0x0000ffff0000ffff) + ((c >> 16) & 0x0000ffff0000ffff)
    c = (c & 0x00000000ffffffff) + ((c >> 32) & 0x00000000ffffffff)
    return c


dp = [inf]*(1<<N)
for i in range(N):
    dp[1<<i] = A[i]

ans = inf
for i in range(1,1<<N):
    bc = bit_count(i)
    d = dp[i]
    if bc == K:
        ans = min(ans,d)
        continue
    already = []
    not_yet = []
    for j in range(N):
        if (i>>j) & 1:
            already.append(j)
        else:
            not_yet.append(j)
    for j in not_yet:
        dp[i^(1<<j)] = min(dp[i^(1<<j)],d+A[j]+min(dist[j][k] for k in already))

print(ans)
0