結果

問題 No.748 yuki国のお財布事情
ユーザー torikuminotorikumino
提出日時 2018-10-28 19:34:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 411 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 99,700 KB
最終ジャッジ日時 2024-11-19 07:15:18
合計ジャッジ時間 5,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,120 KB
testcase_01 AC 35 ms
52,260 KB
testcase_02 AC 33 ms
53,152 KB
testcase_03 AC 34 ms
52,696 KB
testcase_04 AC 33 ms
52,516 KB
testcase_05 AC 35 ms
53,756 KB
testcase_06 AC 36 ms
52,708 KB
testcase_07 AC 34 ms
53,540 KB
testcase_08 AC 34 ms
52,272 KB
testcase_09 AC 34 ms
53,008 KB
testcase_10 AC 34 ms
52,620 KB
testcase_11 AC 42 ms
53,800 KB
testcase_12 AC 34 ms
53,340 KB
testcase_13 AC 112 ms
78,192 KB
testcase_14 AC 166 ms
81,356 KB
testcase_15 AC 124 ms
79,376 KB
testcase_16 AC 248 ms
85,324 KB
testcase_17 AC 361 ms
91,980 KB
testcase_18 AC 411 ms
96,572 KB
testcase_19 AC 342 ms
99,700 KB
testcase_20 AC 296 ms
97,392 KB
testcase_21 AC 397 ms
96,056 KB
testcase_22 AC 36 ms
52,124 KB
testcase_23 AC 35 ms
52,544 KB
testcase_24 AC 34 ms
52,160 KB
testcase_25 AC 240 ms
88,968 KB
testcase_26 AC 373 ms
95,296 KB
testcase_27 AC 393 ms
92,732 KB
testcase_28 AC 207 ms
91,384 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