結果

問題 No.1207 グラフX
ユーザー ああいいああいい
提出日時 2022-01-27 17:46:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 746 ms / 2,000 ms
コード長 1,172 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 171,612 KB
最終ジャッジ日時 2024-06-07 14:22:56
合計ジャッジ時間 29,631 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 632 ms
165,636 KB
testcase_01 AC 638 ms
165,772 KB
testcase_02 AC 625 ms
167,360 KB
testcase_03 AC 644 ms
167,700 KB
testcase_04 AC 642 ms
165,724 KB
testcase_05 AC 739 ms
147,888 KB
testcase_06 AC 738 ms
146,456 KB
testcase_07 AC 723 ms
147,296 KB
testcase_08 AC 608 ms
126,916 KB
testcase_09 AC 654 ms
148,288 KB
testcase_10 AC 746 ms
146,892 KB
testcase_11 AC 727 ms
147,276 KB
testcase_12 AC 635 ms
139,940 KB
testcase_13 AC 421 ms
89,076 KB
testcase_14 AC 698 ms
164,480 KB
testcase_15 AC 633 ms
146,108 KB
testcase_16 AC 451 ms
93,536 KB
testcase_17 AC 542 ms
125,492 KB
testcase_18 AC 435 ms
123,396 KB
testcase_19 AC 530 ms
103,000 KB
testcase_20 AC 667 ms
168,180 KB
testcase_21 AC 130 ms
76,872 KB
testcase_22 AC 561 ms
125,056 KB
testcase_23 AC 556 ms
135,992 KB
testcase_24 AC 394 ms
117,696 KB
testcase_25 AC 686 ms
171,612 KB
testcase_26 AC 602 ms
142,096 KB
testcase_27 AC 703 ms
148,828 KB
testcase_28 AC 665 ms
149,084 KB
testcase_29 AC 651 ms
156,036 KB
testcase_30 AC 393 ms
102,796 KB
testcase_31 AC 360 ms
84,564 KB
testcase_32 AC 361 ms
106,640 KB
testcase_33 AC 407 ms
105,340 KB
testcase_34 AC 652 ms
139,704 KB
testcase_35 AC 191 ms
78,908 KB
testcase_36 AC 661 ms
144,640 KB
testcase_37 AC 620 ms
129,704 KB
testcase_38 AC 254 ms
87,680 KB
testcase_39 AC 406 ms
108,928 KB
testcase_40 AC 267 ms
79,672 KB
testcase_41 AC 519 ms
105,728 KB
testcase_42 AC 35 ms
52,528 KB
testcase_43 AC 34 ms
53,492 KB
testcase_44 AC 35 ms
53,348 KB
testcase_45 AC 571 ms
161,328 KB
testcase_46 AC 572 ms
161,712 KB
testcase_47 AC 569 ms
161,432 KB
testcase_48 AC 577 ms
161,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 8)

N,M,X = map(int,input().split())
G = [[] for _ in range(N+1)]
P = 10 ** 9 + 7
edge = []
parent = list(range(N+1))
def find(i):
    if parent[i] == i:return i
    parent[i] = find(parent[i])
    return parent[i]
def unite(i,j):
    I = find(i)
    J = find(j)
    if I == J:return False
    parent[I] = J
    parent[i] = J
    return True
def isSame(i,j):
    return find(i) == find(j)

for _ in range(M):
    x,y,z = map(int,input().split())
    if isSame(x,y):
        continue
    else:
        unite(x,y)
        G[x].append(y)
        G[y].append(x)
        edge.append((x,y,z))
child = [1] * (N + 1)
"""
def dfs(now = 1,p = 0):
    for v in G[now]:
        if v == p:continue
        dfs(v,now)
        child[now] += child[v]
dfs()
"""
stack = [(1,0)]
order = []
while stack:
    now,p = stack.pop()
    order.append((now,p))
    for v in G[now]:
        if v == p:continue
        stack.append((v,now))
for v,p in order[::-1]:
    if p == 0:continue
    child[p] += child[v]
    
ans = 0
for x,y,z in edge:
    if child[x] > child[y]:
        x,y = y,x
    ans = (ans + child[x] * (N-child[x]) * pow(X,z,P)) % P
print(ans)
0