結果

問題 No.1690 Power Grid
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-09-24 22:28:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 738 ms / 3,000 ms
コード長 922 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 78,816 KB
最終ジャッジ日時 2024-07-05 10:55:48
合計ジャッジ時間 13,078 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,292 KB
testcase_01 AC 37 ms
52,988 KB
testcase_02 AC 58 ms
67,020 KB
testcase_03 AC 37 ms
52,340 KB
testcase_04 AC 37 ms
52,348 KB
testcase_05 AC 36 ms
53,476 KB
testcase_06 AC 633 ms
78,732 KB
testcase_07 AC 622 ms
78,816 KB
testcase_08 AC 622 ms
78,688 KB
testcase_09 AC 622 ms
78,756 KB
testcase_10 AC 678 ms
78,372 KB
testcase_11 AC 619 ms
78,476 KB
testcase_12 AC 38 ms
54,300 KB
testcase_13 AC 66 ms
70,648 KB
testcase_14 AC 161 ms
76,892 KB
testcase_15 AC 684 ms
78,256 KB
testcase_16 AC 660 ms
78,600 KB
testcase_17 AC 384 ms
77,656 KB
testcase_18 AC 216 ms
77,296 KB
testcase_19 AC 683 ms
78,732 KB
testcase_20 AC 685 ms
78,356 KB
testcase_21 AC 703 ms
78,248 KB
testcase_22 AC 716 ms
78,492 KB
testcase_23 AC 709 ms
78,436 KB
testcase_24 AC 738 ms
78,668 KB
testcase_25 AC 711 ms
78,656 KB
testcase_26 AC 733 ms
78,784 KB
testcase_27 AC 38 ms
52,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())
A = list(map(int,input().split()))
inf = 10**12
dis = [[inf]*n for i in range(n)]
for i in range(n):
    dis[i][i] = 0

for i in range(m):
    x,y,z = map(int,input().split())
    x,y = x-1,y-1
    dis[x][y] = dis[y][x] = z

for t in range(n):
    for i in range(n):
        for j in range(n):
            if dis[i][t] == inf or dis[t][j] == inf:
                continue
            dis[i][j] = min(dis[i][j],dis[i][t]+dis[t][j])

dp = [inf]*(1<<n)
for i in range(n):
    dp[1<<i] = A[i]
ans = inf
for i in range(1<<n):
    if dp[i] == inf:
        continue
    if bin(i).count("1") == k:
        ans = min(ans,dp[i])
    for j in range(n):
        if i >> j & 1:
            continue
        cost = dp[i]+A[j]
        d = inf
        for t in range(n):
            if i >> t & 1:
                d = min(d,dis[t][j])
        cost += d
        dp[i|1<<j] = min(dp[i|1<<j],cost)
print(ans)
0