結果

問題 No.1002 Twotone
ユーザー titiatitia
提出日時 2020-02-28 22:48:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,335 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 146,560 KB
最終ジャッジ日時 2024-10-13 18:42:38
合計ジャッジ時間 46,074 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 1,022 ms
81,536 KB
testcase_08 AC 1,807 ms
127,104 KB
testcase_09 AC 1,767 ms
127,232 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 30 ms
10,752 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 30 ms
10,624 KB
testcase_27 AC 957 ms
88,576 KB
testcase_28 AC 1,768 ms
128,512 KB
testcase_29 AC 1,529 ms
128,640 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 1,552 ms
127,992 KB
testcase_32 AC 1,886 ms
128,512 KB
testcase_33 AC 1,588 ms
128,236 KB
testcase_34 AC 1,471 ms
136,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
EDGE=[tuple(map(int,input().split())) for i in range(N-1)]

from collections import defaultdict

EC=[defaultdict(list) for i in range(N+1)]
#EL=[[] for i in range(N+1)]

for ind,(x,y,c) in enumerate(EDGE):
    EC[x][c].append(ind)
    EC[y][c].append(ind)
    #EL[x].append((y,c,ind))
    #EL[y].append((x,c,ind))

Group = [i for i in range(N+1)] # グループ分け
Nodes = [1]*(N+1) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

for i in range(N+1):
    for c in EC[i]:
        if len(EC[i][c])>=2:
            for j in range(1,len(EC[i][c])):
                Union(EC[i][c][j-1],EC[i][c][j])

ANS=0
for i in range(N+1):
    if len(EC[i])>=2:
        L=[]
        for j in EC[i]:
            L.append(Nodes[find(EC[i][j][0])])
        #print(i,L)
        S=0

        for l in L:
            ANS+=l*S
            S+=l

print(ANS)
        
        
0