結果

問題 No.1207 グラフX
ユーザー titiatitia
提出日時 2020-08-30 14:59:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 853 ms / 2,000 ms
コード長 1,719 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 202,416 KB
最終ジャッジ日時 2024-11-15 08:27:33
合計ジャッジ時間 33,102 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 798 ms
199,304 KB
testcase_01 AC 795 ms
198,912 KB
testcase_02 AC 792 ms
197,124 KB
testcase_03 AC 825 ms
202,416 KB
testcase_04 AC 804 ms
198,428 KB
testcase_05 AC 844 ms
186,640 KB
testcase_06 AC 834 ms
186,872 KB
testcase_07 AC 853 ms
187,224 KB
testcase_08 AC 651 ms
156,964 KB
testcase_09 AC 740 ms
180,344 KB
testcase_10 AC 845 ms
186,952 KB
testcase_11 AC 837 ms
187,456 KB
testcase_12 AC 680 ms
163,568 KB
testcase_13 AC 355 ms
103,852 KB
testcase_14 AC 820 ms
197,860 KB
testcase_15 AC 724 ms
174,964 KB
testcase_16 AC 383 ms
106,348 KB
testcase_17 AC 589 ms
142,604 KB
testcase_18 AC 524 ms
145,792 KB
testcase_19 AC 517 ms
122,580 KB
testcase_20 AC 827 ms
199,420 KB
testcase_21 AC 115 ms
80,392 KB
testcase_22 AC 561 ms
144,288 KB
testcase_23 AC 612 ms
158,952 KB
testcase_24 AC 469 ms
137,260 KB
testcase_25 AC 843 ms
200,040 KB
testcase_26 AC 688 ms
165,224 KB
testcase_27 AC 793 ms
186,528 KB
testcase_28 AC 733 ms
172,836 KB
testcase_29 AC 774 ms
181,656 KB
testcase_30 AC 429 ms
119,396 KB
testcase_31 AC 328 ms
97,956 KB
testcase_32 AC 378 ms
118,496 KB
testcase_33 AC 413 ms
117,880 KB
testcase_34 AC 724 ms
168,528 KB
testcase_35 AC 153 ms
81,604 KB
testcase_36 AC 730 ms
172,308 KB
testcase_37 AC 619 ms
150,648 KB
testcase_38 AC 257 ms
94,424 KB
testcase_39 AC 428 ms
122,436 KB
testcase_40 AC 275 ms
93,380 KB
testcase_41 AC 514 ms
128,220 KB
testcase_42 AC 40 ms
53,064 KB
testcase_43 AC 39 ms
52,628 KB
testcase_44 AC 40 ms
53,512 KB
testcase_45 AC 821 ms
197,808 KB
testcase_46 AC 815 ms
198,168 KB
testcase_47 AC 815 ms
197,796 KB
testcase_48 AC 806 ms
198,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from operator import itemgetter

mod = 10**9+7

N,M,X=map(int,input().split())

E=[tuple(map(int,input().split())) for i in range(M)]

E.sort(key=itemgetter(2))

# UnionFind

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)

E2=[]

for x,y,z in E:
    if find(x)!=find(y):
        E2.append((x,y,z))
        Union(x,y)

EDGE=[[] for i in range(N+1)]

D=[0]*(N+1)

for x,y,z in E2:
    EDGE[x].append((y,z))
    EDGE[y].append((x,z))
    D[x]+=1
    D[y]+=1

for i in range(1,N+1):
    if D[i]==1:
        ROOT=i
        break

QUE=[ROOT] 
Parent=[-1]*(N+1)
Score=[-1]*(N+1)
Parent[ROOT]=N+1 # ROOTの親を定めておく.
TOP_SORT=[] # トポロジカルソート

while QUE: # トポロジカルソートと同時に親を見つける
    x=QUE.pop()
    TOP_SORT.append(x)
    for to,sc in EDGE[x]:
        if Parent[to]==-1:
            Score[to]=sc
            Parent[to]=x
            QUE.append(to)

Children=[1]*(N+1)

for x in TOP_SORT[1:][::-1]: #(自分を含む)子ノードの数を調べる
    Children[Parent[x]]+=Children[x]

ANS=0
for i in range(1,N+1):
    if i==ROOT:
        continue
    c=Children[i]
    ANS=ANS+c*(N-c)*pow(X,Score[i],mod)
    ANS%=mod

print(ANS)

    
0