結果

問題 No.748 yuki国のお財布事情
ユーザー htkbhtkb
提出日時 2018-10-19 22:18:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 507 ms / 2,000 ms
コード長 1,062 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,344 KB
最終ジャッジ日時 2024-11-18 21:08:27
合計ジャッジ時間 5,950 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 68 ms
13,696 KB
testcase_14 AC 104 ms
15,488 KB
testcase_15 AC 75 ms
14,208 KB
testcase_16 AC 175 ms
19,216 KB
testcase_17 AC 423 ms
30,412 KB
testcase_18 AC 453 ms
31,496 KB
testcase_19 AC 507 ms
32,164 KB
testcase_20 AC 437 ms
29,732 KB
testcase_21 AC 443 ms
31,024 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 346 ms
27,848 KB
testcase_26 AC 459 ms
32,344 KB
testcase_27 AC 450 ms
32,320 KB
testcase_28 AC 324 ms
25,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def kruskal(v_count: int, edges: list) -> int:
    """
    :param v_count: 頂点数
    :param edges: [(weight, from, to), ... ]
    """
    from itertools import islice
    tree = [-1]*v_count

    def get_root(x) -> int:
        if tree[x] < 0:
            return x
        tree[x] = get_root(tree[x])
        return tree[x]

    def unite(a) -> bool:
        x, y = get_root(a[1]), get_root(a[2])
        if x != y:
            big, small = (x, y) if tree[x] < tree[y] else (y, x)
            tree[big] += tree[small]
            tree[small] = big
        return x != y

    cost = 0
    for w, _s, _t in islice(filter(unite, sorted(edges)), v_count-1):
        cost += w
    return cost


if __name__ == "__main__":
    import sys
    N, M, K = map(int, input().split())
    edges = [[c, a-1, b-1] for _ in [0]*M for a, b, c in (map(int, sys.stdin.readline().split()),)]
    total = sum(v[0] for v in edges)
    cost = 0
    for e in map(int, sys.stdin):
        cost += edges[e-1][0]
        edges[e-1][0] = 0

    print(total - (kruskal(N, edges) + cost))
0