結果
問題 | No.1690 Power Grid |
ユーザー | roaris |
提出日時 | 2021-09-24 22:59:09 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 963 bytes |
コンパイル時間 | 190 ms |
コンパイル使用メモリ | 82,440 KB |
実行使用メモリ | 103,680 KB |
最終ジャッジ日時 | 2024-07-05 11:09:43 |
合計ジャッジ時間 | 4,951 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
60,928 KB |
testcase_01 | AC | 42 ms
55,108 KB |
testcase_02 | AC | 57 ms
67,852 KB |
testcase_03 | AC | 39 ms
55,576 KB |
testcase_04 | AC | 41 ms
54,500 KB |
testcase_05 | AC | 37 ms
53,564 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
import sys input = sys.stdin.readline from collections import * N, M, K = map(int, input().split()) A = list(map(int, input().split())) d = [[10**18]*N for _ in range(N)] for i in range(N): d[i][i] = 0 for _ in range(M): X, Y, Z = map(int, input().split()) d[X-1][Y-1] = Z d[Y-1][X-1] = Z for k in range(N): for i in range(N): for j in range(N): d[i][j] = min(d[i][j], d[i][k]+d[k][j]) dp = [[10**18]*(1<<N) for _ in range(K+1)] dp[0][0] = 0 for i in range(K): for S in range(1<<N): for v in range(N): if not (S>>v)&1: if S==0: cost = 0 else: cost = 10**18 for nv in range(N): if (S>>nv)&1: cost = min(cost, d[v][nv]) dp[i+1][S|(1<<v)] = min(dp[i+1][S|(1<<v)], dp[i][S]+A[v]+cost) print(min(dp[K]))