結果

問題 No.1207 グラフX
ユーザー marroncastlemarroncastle
提出日時 2020-08-30 18:43:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,604 ms / 2,000 ms
コード長 1,136 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 347,604 KB
最終ジャッジ日時 2024-11-15 15:11:01
合計ジャッジ時間 34,228 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 717 ms
166,404 KB
testcase_01 AC 694 ms
166,268 KB
testcase_02 AC 704 ms
165,540 KB
testcase_03 AC 701 ms
165,440 KB
testcase_04 AC 719 ms
166,220 KB
testcase_05 AC 1,487 ms
346,836 KB
testcase_06 AC 1,546 ms
347,604 KB
testcase_07 AC 1,604 ms
347,592 KB
testcase_08 AC 667 ms
139,240 KB
testcase_09 AC 670 ms
150,404 KB
testcase_10 AC 1,552 ms
300,960 KB
testcase_11 AC 1,493 ms
344,344 KB
testcase_12 AC 684 ms
142,016 KB
testcase_13 AC 423 ms
105,216 KB
testcase_14 AC 735 ms
163,852 KB
testcase_15 AC 683 ms
148,712 KB
testcase_16 AC 416 ms
106,532 KB
testcase_17 AC 554 ms
130,152 KB
testcase_18 AC 449 ms
128,616 KB
testcase_19 AC 550 ms
121,496 KB
testcase_20 AC 726 ms
165,180 KB
testcase_21 AC 132 ms
81,068 KB
testcase_22 AC 572 ms
133,944 KB
testcase_23 AC 588 ms
138,976 KB
testcase_24 AC 406 ms
123,024 KB
testcase_25 AC 733 ms
164,424 KB
testcase_26 AC 621 ms
143,744 KB
testcase_27 AC 700 ms
157,860 KB
testcase_28 AC 687 ms
151,932 KB
testcase_29 AC 659 ms
156,752 KB
testcase_30 AC 437 ms
111,700 KB
testcase_31 AC 372 ms
100,236 KB
testcase_32 AC 356 ms
111,712 KB
testcase_33 AC 396 ms
111,616 KB
testcase_34 AC 667 ms
146,728 KB
testcase_35 AC 169 ms
82,068 KB
testcase_36 AC 642 ms
148,896 KB
testcase_37 AC 587 ms
134,756 KB
testcase_38 AC 260 ms
91,988 KB
testcase_39 AC 393 ms
113,992 KB
testcase_40 AC 299 ms
93,212 KB
testcase_41 AC 513 ms
119,348 KB
testcase_42 AC 38 ms
52,756 KB
testcase_43 AC 38 ms
53,684 KB
testcase_44 AC 40 ms
52,404 KB
testcase_45 AC 693 ms
169,468 KB
testcase_46 AC 666 ms
169,596 KB
testcase_47 AC 679 ms
169,316 KB
testcase_48 AC 677 ms
169,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind():
  def __init__(self, n):
    self.n = n
    self.parents = [-1] * n

  def find(self, x):
    if self.parents[x] < 0:
      return x
    else:
      self.parents[x] = self.find(self.parents[x])
    return self.parents[x]

  def union(self, x, y):
    x = self.find(x)
    y = self.find(y)

    if x == y:
      return

    if self.parents[x] > self.parents[y]:
          x, y = y, x

    self.parents[x] += self.parents[y]
    self.parents[y] = x

  def same(self, x, y):
    return self.find(x) == self.find(y)

N, M, X = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(M)]
uf = UnionFind(N)
edge = [[] for _ in range(N)]
num = 0
for x,y,z in A:
  x -= 1
  y -= 1
  if not uf.same(x,y):
    uf.union(x,y)
    edge[x].append((y,z,num))
    edge[y].append((x,z,num))
    num += 1
    if num==N-1:
      break

import sys
sys.setrecursionlimit(10**6)

def dfs(v,p):
  global ans
  res = 0
  for u,z,num in edge[v]:
    if u!=p:
      v_num = dfs(u,v)
      ans += v_num*(N-v_num)*pow(X,z,mod)
      ans %= mod
      res += v_num
  return res+1

ans = 0
mod = 10**9+7
dfs(0,-1)

print(ans)
0