結果

問題 No.748 yuki国のお財布事情
ユーザー ああいいああいい
提出日時 2022-06-12 19:56:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 547 ms / 2,000 ms
コード長 755 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 104,824 KB
最終ジャッジ日時 2024-09-23 06:28:10
合計ジャッジ時間 8,114 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,556 KB
testcase_01 AC 38 ms
52,064 KB
testcase_02 AC 39 ms
52,932 KB
testcase_03 AC 39 ms
52,548 KB
testcase_04 AC 39 ms
53,076 KB
testcase_05 AC 39 ms
52,488 KB
testcase_06 AC 39 ms
52,768 KB
testcase_07 AC 38 ms
53,016 KB
testcase_08 AC 38 ms
53,544 KB
testcase_09 AC 38 ms
52,136 KB
testcase_10 AC 39 ms
53,488 KB
testcase_11 AC 39 ms
53,364 KB
testcase_12 AC 38 ms
52,828 KB
testcase_13 AC 146 ms
78,968 KB
testcase_14 AC 233 ms
81,736 KB
testcase_15 AC 176 ms
80,080 KB
testcase_16 AC 364 ms
87,076 KB
testcase_17 AC 415 ms
93,392 KB
testcase_18 AC 522 ms
97,668 KB
testcase_19 AC 495 ms
104,824 KB
testcase_20 AC 469 ms
100,736 KB
testcase_21 AC 538 ms
96,564 KB
testcase_22 AC 37 ms
52,864 KB
testcase_23 AC 38 ms
52,556 KB
testcase_24 AC 38 ms
52,612 KB
testcase_25 AC 341 ms
91,320 KB
testcase_26 AC 511 ms
95,556 KB
testcase_27 AC 547 ms
96,200 KB
testcase_28 AC 337 ms
96,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 8)

N,M,K = map(int,input().split())
edge = []
for _ in range(M):
    a,b,c = map(int,input().split())
    edge.append((c,a,b,_))
parent = list(range(N + 1))
def find(i):
    if parent[i] == i:
        return i
    parent[i] = find(parent[i])
    return parent[i]
def unite(i,j):
    I = find(i)
    J = find(j)
    if I == J:
        return False
    parent[I] = J
    parent[i] = J
    return True
def isSame(i,j):
    return find(i) == find(j)

ans = 0
s = set()
for _ in range(K):
    e = int(input())
    c,a,b,i = edge[e - 1]
    unite(a,b)
    s.add(e - 1)
edge.sort(key = lambda x:x[0])
for c,a,b,_ in edge:
    if _ in s:continue
    if isSame(a,b):
        ans += c
    else:
        unite(a,b)
print(ans)
0