結果

問題 No.1690 Power Grid
ユーザー ayaoniayaoni
提出日時 2021-09-24 23:27:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 939 ms / 3,000 ms
コード長 1,322 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 81,648 KB
実行使用メモリ 79,232 KB
最終ジャッジ日時 2024-07-05 11:34:59
合計ジャッジ時間 11,036 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 40 ms
52,992 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 AC 356 ms
78,720 KB
testcase_07 AC 344 ms
79,012 KB
testcase_08 AC 351 ms
78,976 KB
testcase_09 AC 370 ms
78,592 KB
testcase_10 AC 52 ms
64,000 KB
testcase_11 AC 638 ms
78,720 KB
testcase_12 AC 38 ms
51,712 KB
testcase_13 AC 60 ms
67,840 KB
testcase_14 AC 153 ms
77,000 KB
testcase_15 AC 939 ms
78,592 KB
testcase_16 AC 392 ms
78,592 KB
testcase_17 AC 279 ms
77,828 KB
testcase_18 AC 176 ms
77,316 KB
testcase_19 AC 454 ms
79,104 KB
testcase_20 AC 413 ms
79,104 KB
testcase_21 AC 50 ms
63,872 KB
testcase_22 AC 870 ms
78,848 KB
testcase_23 AC 774 ms
78,592 KB
testcase_24 AC 919 ms
78,592 KB
testcase_25 AC 899 ms
78,720 KB
testcase_26 AC 832 ms
79,232 KB
testcase_27 AC 38 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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:
        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