結果

問題 No.1690 Power Grid
ユーザー wolgnikwolgnik
提出日時 2021-09-24 22:44:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 655 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,644 KB
実行使用メモリ 76,588 KB
最終ジャッジ日時 2024-07-05 11:03:47
合計ジャッジ時間 2,386 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,144 KB
testcase_01 AC 34 ms
53,220 KB
testcase_02 AC 33 ms
53,392 KB
testcase_03 AC 31 ms
53,548 KB
testcase_04 AC 30 ms
52,568 KB
testcase_05 AC 31 ms
52,472 KB
testcase_06 AC 76 ms
75,916 KB
testcase_07 AC 77 ms
75,892 KB
testcase_08 AC 78 ms
76,128 KB
testcase_09 AC 82 ms
75,652 KB
testcase_10 AC 39 ms
59,692 KB
testcase_11 AC 40 ms
61,744 KB
testcase_12 AC 32 ms
52,332 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 89 ms
75,788 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 40 ms
60,824 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 31 ms
52,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import combinations as combi
input = sys.stdin.readline
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(M):
  u, v, c = map(int, input().split())
  d[u - 1][v - 1] = c
  d[v - 1][u - 1] = c

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])

res = 10 ** 18
for c in combi(range(N), K):
  cres = 0
  for i in c[1: ]:
    t = 10 ** 18
    for j in c:
      if i == j: continue
      t = min(t, d[i][j])
    cres += t
  for i in c: cres += a[i]
  res = min(res, cres)
  #print(c, cres, d)
print(res)
0