結果

問題 No.1207 グラフX
ユーザー ああいいああいい
提出日時 2022-01-27 17:40:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,175 ms / 2,000 ms
コード長 919 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 324,908 KB
最終ジャッジ日時 2024-12-21 19:12:07
合計ジャッジ時間 31,896 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 574 ms
138,520 KB
testcase_01 AC 570 ms
137,744 KB
testcase_02 AC 545 ms
137,660 KB
testcase_03 AC 583 ms
138,992 KB
testcase_04 AC 569 ms
137,960 KB
testcase_05 AC 1,167 ms
311,640 KB
testcase_06 AC 1,115 ms
298,700 KB
testcase_07 AC 1,023 ms
299,584 KB
testcase_08 AC 547 ms
117,280 KB
testcase_09 AC 595 ms
128,684 KB
testcase_10 AC 1,175 ms
324,908 KB
testcase_11 AC 982 ms
301,804 KB
testcase_12 AC 591 ms
120,680 KB
testcase_13 AC 413 ms
87,672 KB
testcase_14 AC 641 ms
140,792 KB
testcase_15 AC 565 ms
127,512 KB
testcase_16 AC 436 ms
91,228 KB
testcase_17 AC 539 ms
114,228 KB
testcase_18 AC 399 ms
111,008 KB
testcase_19 AC 491 ms
99,056 KB
testcase_20 AC 615 ms
139,808 KB
testcase_21 AC 129 ms
77,236 KB
testcase_22 AC 498 ms
113,960 KB
testcase_23 AC 491 ms
120,676 KB
testcase_24 AC 351 ms
106,300 KB
testcase_25 AC 620 ms
139,096 KB
testcase_26 AC 560 ms
124,716 KB
testcase_27 AC 662 ms
134,068 KB
testcase_28 AC 615 ms
128,172 KB
testcase_29 AC 565 ms
132,824 KB
testcase_30 AC 356 ms
97,904 KB
testcase_31 AC 347 ms
84,000 KB
testcase_32 AC 335 ms
99,784 KB
testcase_33 AC 378 ms
99,784 KB
testcase_34 AC 615 ms
124,960 KB
testcase_35 AC 183 ms
79,164 KB
testcase_36 AC 600 ms
127,068 KB
testcase_37 AC 566 ms
116,936 KB
testcase_38 AC 241 ms
86,012 KB
testcase_39 AC 382 ms
100,360 KB
testcase_40 AC 264 ms
79,632 KB
testcase_41 AC 502 ms
100,500 KB
testcase_42 AC 38 ms
53,116 KB
testcase_43 AC 36 ms
53,508 KB
testcase_44 AC 34 ms
52,992 KB
testcase_45 AC 540 ms
135,900 KB
testcase_46 AC 540 ms
135,832 KB
testcase_47 AC 546 ms
136,184 KB
testcase_48 AC 534 ms
136,184 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()
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