結果
問題 | No.1690 Power Grid |
ユーザー | wolgnik |
提出日時 | 2021-09-24 22:49:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 874 bytes |
コンパイル時間 | 247 ms |
コンパイル使用メモリ | 82,044 KB |
実行使用メモリ | 76,408 KB |
最終ジャッジ日時 | 2024-07-05 11:06:06 |
合計ジャッジ時間 | 3,182 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
51,944 KB |
testcase_01 | AC | 36 ms
52,120 KB |
testcase_02 | AC | 37 ms
53,856 KB |
testcase_03 | AC | 36 ms
53,816 KB |
testcase_04 | AC | 38 ms
52,532 KB |
testcase_05 | AC | 39 ms
51,688 KB |
testcase_06 | AC | 117 ms
76,088 KB |
testcase_07 | AC | 115 ms
75,808 KB |
testcase_08 | AC | 115 ms
76,012 KB |
testcase_09 | AC | 115 ms
75,932 KB |
testcase_10 | AC | 44 ms
59,724 KB |
testcase_11 | WA | - |
testcase_12 | AC | 38 ms
53,108 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 121 ms
76,168 KB |
testcase_21 | AC | 45 ms
61,424 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 38 ms
52,608 KB |
ソースコード
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 s = [c[0]] vis = [0] * N while len(s): i = s.pop() vis[i] = 1 t = 10 ** 18 jj = 0 for j in c: if vis[j]: continue if i == j: continue if t > d[i][j]: t = min(t, d[i][j]) jj = j if t == 10 ** 18: break cres += t if vis[jj]: continue vis[jj] = 1 s.append(jj) for i in c: cres += a[i] res = min(res, cres) #print(c, cres, d) print(res)