結果

問題 No.748 yuki国のお財布事情
ユーザー torikuminotorikumino
提出日時 2018-10-28 19:34:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 506 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 99,636 KB
最終ジャッジ日時 2024-04-29 22:32:18
合計ジャッジ時間 6,642 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 41 ms
51,712 KB
testcase_07 AC 42 ms
51,968 KB
testcase_08 AC 43 ms
52,096 KB
testcase_09 AC 44 ms
52,096 KB
testcase_10 AC 42 ms
52,096 KB
testcase_11 AC 42 ms
51,840 KB
testcase_12 AC 42 ms
52,096 KB
testcase_13 AC 134 ms
78,208 KB
testcase_14 AC 196 ms
81,664 KB
testcase_15 AC 153 ms
78,976 KB
testcase_16 AC 285 ms
85,696 KB
testcase_17 AC 445 ms
91,976 KB
testcase_18 AC 491 ms
96,180 KB
testcase_19 AC 402 ms
99,636 KB
testcase_20 AC 348 ms
97,656 KB
testcase_21 AC 474 ms
95,904 KB
testcase_22 AC 41 ms
51,840 KB
testcase_23 AC 40 ms
51,712 KB
testcase_24 AC 41 ms
52,224 KB
testcase_25 AC 308 ms
89,344 KB
testcase_26 AC 459 ms
95,140 KB
testcase_27 AC 506 ms
92,600 KB
testcase_28 AC 236 ms
91,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int,input().split())
e = []
for _ in range(m):
    a, b, c = map(int,input().split())
    e.append((a-1,b-1,c))
r = 0
for _ in range(k):
    i = int(input())-1
    a, b, c = e[i]
    e[i] = (a,b,0)
p = list(range(n))
s = [1]*n
def f(x):
    if x == p[x]:
        return x
    p[x] = f(p[x])
    return p[x]
def u(x, y):
    x = f(x)
    y = f(y)
    if s[x] > s[y]:
        x, y = y, x
    p[x] = p[y]
    s[y] += s[x]
e.sort(key=lambda x: x[2])
for a, b, c in e:
    if f(a) == f(b):
        r += c
        continue
    u(a, b)
print(r)
0