結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 666 ms
138,272 KB
testcase_01 AC 669 ms
137,864 KB
testcase_02 AC 658 ms
137,792 KB
testcase_03 AC 666 ms
138,868 KB
testcase_04 AC 641 ms
137,936 KB
testcase_05 AC 1,134 ms
311,424 KB
testcase_06 AC 1,112 ms
298,112 KB
testcase_07 AC 1,117 ms
298,880 KB
testcase_08 AC 602 ms
116,736 KB
testcase_09 AC 651 ms
127,872 KB
testcase_10 AC 1,275 ms
324,096 KB
testcase_11 AC 1,080 ms
300,928 KB
testcase_12 AC 629 ms
120,544 KB
testcase_13 AC 463 ms
87,552 KB
testcase_14 AC 746 ms
140,544 KB
testcase_15 AC 644 ms
127,144 KB
testcase_16 AC 473 ms
91,008 KB
testcase_17 AC 588 ms
113,920 KB
testcase_18 AC 470 ms
110,848 KB
testcase_19 AC 568 ms
98,560 KB
testcase_20 AC 701 ms
139,728 KB
testcase_21 AC 142 ms
76,852 KB
testcase_22 AC 607 ms
113,664 KB
testcase_23 AC 568 ms
120,320 KB
testcase_24 AC 419 ms
106,264 KB
testcase_25 AC 741 ms
138,980 KB
testcase_26 AC 642 ms
124,416 KB
testcase_27 AC 750 ms
133,760 KB
testcase_28 AC 732 ms
127,872 KB
testcase_29 AC 655 ms
132,224 KB
testcase_30 AC 397 ms
97,744 KB
testcase_31 AC 410 ms
83,840 KB
testcase_32 AC 392 ms
99,656 KB
testcase_33 AC 458 ms
99,712 KB
testcase_34 AC 643 ms
125,260 KB
testcase_35 AC 208 ms
79,456 KB
testcase_36 AC 658 ms
126,860 KB
testcase_37 AC 632 ms
116,600 KB
testcase_38 AC 275 ms
86,032 KB
testcase_39 AC 432 ms
100,096 KB
testcase_40 AC 284 ms
79,232 KB
testcase_41 AC 529 ms
100,736 KB
testcase_42 AC 41 ms
51,840 KB
testcase_43 AC 38 ms
52,352 KB
testcase_44 AC 39 ms
52,608 KB
testcase_45 AC 625 ms
135,680 KB
testcase_46 AC 581 ms
136,064 KB
testcase_47 AC 583 ms
135,720 KB
testcase_48 AC 568 ms
136,064 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