結果

問題 No.1207 グラフX
ユーザー 37zigen37zigen
提出日時 2020-08-30 22:01:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,748 ms / 2,000 ms
コード長 1,089 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 295,936 KB
最終ジャッジ日時 2024-12-11 21:11:46
合計ジャッジ時間 36,749 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 720 ms
120,064 KB
testcase_01 AC 709 ms
119,808 KB
testcase_02 AC 682 ms
119,808 KB
testcase_03 AC 720 ms
120,064 KB
testcase_04 AC 709 ms
119,808 KB
testcase_05 AC 1,584 ms
295,936 KB
testcase_06 AC 1,748 ms
293,504 KB
testcase_07 AC 1,446 ms
295,040 KB
testcase_08 AC 632 ms
103,104 KB
testcase_09 AC 675 ms
110,976 KB
testcase_10 AC 1,520 ms
260,352 KB
testcase_11 AC 1,456 ms
294,016 KB
testcase_12 AC 626 ms
105,156 KB
testcase_13 AC 381 ms
83,584 KB
testcase_14 AC 725 ms
119,876 KB
testcase_15 AC 676 ms
109,440 KB
testcase_16 AC 384 ms
85,504 KB
testcase_17 AC 544 ms
100,864 KB
testcase_18 AC 445 ms
100,608 KB
testcase_19 AC 504 ms
91,648 KB
testcase_20 AC 731 ms
118,912 KB
testcase_21 AC 107 ms
76,968 KB
testcase_22 AC 547 ms
101,504 KB
testcase_23 AC 579 ms
105,736 KB
testcase_24 AC 414 ms
97,152 KB
testcase_25 AC 732 ms
119,040 KB
testcase_26 AC 613 ms
108,544 KB
testcase_27 AC 704 ms
114,104 KB
testcase_28 AC 675 ms
110,336 KB
testcase_29 AC 660 ms
114,432 KB
testcase_30 AC 399 ms
91,008 KB
testcase_31 AC 336 ms
82,176 KB
testcase_32 AC 369 ms
92,800 KB
testcase_33 AC 395 ms
91,904 KB
testcase_34 AC 651 ms
108,672 KB
testcase_35 AC 157 ms
78,464 KB
testcase_36 AC 641 ms
109,568 KB
testcase_37 AC 595 ms
102,400 KB
testcase_38 AC 300 ms
82,816 KB
testcase_39 AC 403 ms
93,312 KB
testcase_40 AC 231 ms
78,464 KB
testcase_41 AC 485 ms
91,392 KB
testcase_42 AC 39 ms
52,352 KB
testcase_43 AC 38 ms
51,840 KB
testcase_44 AC 38 ms
52,224 KB
testcase_45 AC 683 ms
119,352 KB
testcase_46 AC 678 ms
119,368 KB
testcase_47 AC 676 ms
118,960 KB
testcase_48 AC 675 ms
119,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)

MOD=10**9+7

class UnionFind():
    def __init__(self,n):
        self.upper=[-1]*n

    def root(self,x):
        if self.upper[x]<0:
            return x
        else:
            self.upper[x]=self.root(self.upper[x])
            return self.upper[x]

    def equiv(self,x,y):
        return self.root(x)==self.root(y)

    def unite(self,x,y):
        x=self.root(x)
        y=self.root(y)
        if x==y:
            return
        if self.upper[x]>self.upper[y]:
            x,y=y,x
        self.upper[x]+=self.upper[y]
        self.upper[y]=x

N,M,X=map(int,input().split())
g=[[] for _ in range(N+1)]
uf=UnionFind(N+1)
for i in range(M):
    x,y,z=map(int,input().split())
    if not uf.equiv(x,y):
        g[x].append((y,pow(X,z,MOD)))
        g[y].append((x,pow(X,z,MOD)))
        uf.unite(x,y)

sz=[1]*(N+1)
ans=0

def dfs(v,p):
    global ans
    for dst,cost in g[v]:
        if dst==p:
            continue
        dfs(dst,v)
        ans+=sz[dst]*(N-sz[dst])%MOD*cost%MOD
        ans%=MOD
        sz[v]+=sz[dst]

dfs(1,-1)
print(ans)
0