結果

問題 No.1207 グラフX
ユーザー roarisroaris
提出日時 2020-12-02 06:48:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,140 ms / 2,000 ms
コード長 1,970 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 162,800 KB
最終ジャッジ日時 2024-09-13 03:50:17
合計ジャッジ時間 43,611 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,124 ms
154,988 KB
testcase_01 AC 1,057 ms
156,912 KB
testcase_02 AC 1,059 ms
154,080 KB
testcase_03 AC 1,105 ms
162,800 KB
testcase_04 AC 1,061 ms
155,336 KB
testcase_05 AC 738 ms
144,216 KB
testcase_06 AC 732 ms
144,092 KB
testcase_07 AC 739 ms
144,612 KB
testcase_08 AC 779 ms
122,748 KB
testcase_09 AC 942 ms
141,136 KB
testcase_10 AC 758 ms
144,428 KB
testcase_11 AC 743 ms
144,372 KB
testcase_12 AC 836 ms
132,280 KB
testcase_13 AC 365 ms
87,840 KB
testcase_14 AC 1,112 ms
158,032 KB
testcase_15 AC 915 ms
137,940 KB
testcase_16 AC 401 ms
92,092 KB
testcase_17 AC 697 ms
121,632 KB
testcase_18 AC 647 ms
121,516 KB
testcase_19 AC 571 ms
101,968 KB
testcase_20 AC 1,125 ms
159,684 KB
testcase_21 AC 97 ms
76,632 KB
testcase_22 AC 719 ms
122,956 KB
testcase_23 AC 785 ms
131,744 KB
testcase_24 AC 570 ms
116,324 KB
testcase_25 AC 1,140 ms
159,776 KB
testcase_26 AC 874 ms
134,180 KB
testcase_27 AC 1,028 ms
149,856 KB
testcase_28 AC 934 ms
143,376 KB
testcase_29 AC 978 ms
148,500 KB
testcase_30 AC 479 ms
101,100 KB
testcase_31 AC 312 ms
84,032 KB
testcase_32 AC 466 ms
103,360 KB
testcase_33 AC 473 ms
102,596 KB
testcase_34 AC 898 ms
135,416 KB
testcase_35 AC 135 ms
78,064 KB
testcase_36 AC 892 ms
141,112 KB
testcase_37 AC 757 ms
126,516 KB
testcase_38 AC 267 ms
87,028 KB
testcase_39 AC 491 ms
105,272 KB
testcase_40 AC 212 ms
78,284 KB
testcase_41 AC 560 ms
103,284 KB
testcase_42 AC 38 ms
53,792 KB
testcase_43 AC 37 ms
53,352 KB
testcase_44 AC 37 ms
53,496 KB
testcase_45 AC 1,043 ms
157,908 KB
testcase_46 AC 1,021 ms
157,552 KB
testcase_47 AC 1,036 ms
157,552 KB
testcase_48 AC 1,031 ms
157,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class Unionfind:
    def __init__(self, n):
        self.par = [-1]*n
        self.rank = [1]*n
    
    def root(self, x):
        r = x
        
        while not self.par[r]<0:
            r = self.par[r]
        
        t = x
        
        while t!=r:
            tmp = t
            t = self.par[t]
            self.par[tmp] = r
        
        return r
    
    def unite(self, x, y):
        rx = self.root(x)
        ry = self.root(y)
        
        if rx==ry:
            return
        
        if self.rank[rx]<=self.rank[ry]:
            self.par[ry] += self.par[rx]
            self.par[rx] = ry
            
            if self.rank[rx]==self.rank[ry]:
                self.rank[ry] += 1
        else:
            self.par[rx] += self.par[ry]
            self.par[ry] = rx
    
    def is_same(self, x, y):
        return self.root(x)==self.root(y)
    
    def count(self, x):
        return -self.par[self.root(x)]

def dfs():
    stack = [(0, -1)]
    in_order = [-1]*N
    in_order_now = 0
    par = [-1]*N
    size = [1]*N
    
    while stack:
        v, pv = stack.pop()
        in_order[v] = in_order_now
        in_order_now += 1
        
        for nv in G[v]:
            if nv==pv:
                continue
            
            par[nv] = v
            stack.append((nv, v))
    
    vs = [(in_order[v], v) for v in range(1, N)]
    vs.sort(reverse=True)
    
    for _, v in vs:
        size[par[v]] += size[v]
    
    return size
    
N, M, X = map(int, input().split())
uf = Unionfind(N)
G = [[] for _ in range(N)]
edges = []

for _ in range(M):
    x, y, z = map(int, input().split())
    
    if not uf.is_same(x-1, y-1):
        uf.unite(x-1, y-1)
        G[x-1].append(y-1)
        G[y-1].append(x-1)
        edges.append((x-1, y-1, z))

size = dfs()
ans = 0
MOD = 10**9+7

for x, y, z in edges:
    m = min(size[x], size[y])
    ans += m*(N-m)*pow(X, z, MOD)
    ans %= MOD

print(ans)
0