結果

問題 No.1207 グラフX
ユーザー 37zigen37zigen
提出日時 2020-08-30 22:06:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,568 ms / 2,000 ms
コード長 1,114 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 299,776 KB
最終ジャッジ日時 2024-11-15 15:39:08
合計ジャッジ時間 33,861 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 674 ms
116,608 KB
testcase_01 AC 672 ms
116,864 KB
testcase_02 AC 657 ms
117,064 KB
testcase_03 AC 666 ms
116,840 KB
testcase_04 AC 667 ms
116,972 KB
testcase_05 AC 1,481 ms
299,776 KB
testcase_06 AC 1,528 ms
298,496 KB
testcase_07 AC 1,504 ms
299,776 KB
testcase_08 AC 617 ms
100,708 KB
testcase_09 AC 655 ms
108,544 KB
testcase_10 AC 1,568 ms
257,664 KB
testcase_11 AC 1,448 ms
296,704 KB
testcase_12 AC 609 ms
103,784 KB
testcase_13 AC 346 ms
83,968 KB
testcase_14 AC 701 ms
117,228 KB
testcase_15 AC 655 ms
106,496 KB
testcase_16 AC 374 ms
85,272 KB
testcase_17 AC 543 ms
99,072 KB
testcase_18 AC 438 ms
99,584 KB
testcase_19 AC 489 ms
90,388 KB
testcase_20 AC 704 ms
117,868 KB
testcase_21 AC 99 ms
76,708 KB
testcase_22 AC 535 ms
99,924 KB
testcase_23 AC 564 ms
103,936 KB
testcase_24 AC 399 ms
96,896 KB
testcase_25 AC 710 ms
116,696 KB
testcase_26 AC 604 ms
107,264 KB
testcase_27 AC 684 ms
112,640 KB
testcase_28 AC 667 ms
108,192 KB
testcase_29 AC 646 ms
111,872 KB
testcase_30 AC 400 ms
90,088 KB
testcase_31 AC 316 ms
81,832 KB
testcase_32 AC 356 ms
91,648 KB
testcase_33 AC 398 ms
90,720 KB
testcase_34 AC 642 ms
107,264 KB
testcase_35 AC 141 ms
77,184 KB
testcase_36 AC 634 ms
107,264 KB
testcase_37 AC 568 ms
101,248 KB
testcase_38 AC 256 ms
82,432 KB
testcase_39 AC 389 ms
92,416 KB
testcase_40 AC 197 ms
78,720 KB
testcase_41 AC 471 ms
90,860 KB
testcase_42 AC 38 ms
52,096 KB
testcase_43 AC 39 ms
52,352 KB
testcase_44 AC 38 ms
52,096 KB
testcase_45 AC 659 ms
116,276 KB
testcase_46 AC 670 ms
116,304 KB
testcase_47 AC 658 ms
116,304 KB
testcase_48 AC 662 ms
116,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
input=sys.stdin.readline

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