結果

問題 No.1207 グラフX
ユーザー marroncastlemarroncastle
提出日時 2020-08-30 18:41:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,655 ms / 2,000 ms
コード長 1,185 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 349,396 KB
最終ジャッジ日時 2024-11-15 15:10:18
合計ジャッジ時間 35,680 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 757 ms
167,672 KB
testcase_01 AC 721 ms
167,940 KB
testcase_02 AC 723 ms
166,476 KB
testcase_03 AC 725 ms
166,972 KB
testcase_04 AC 727 ms
167,608 KB
testcase_05 AC 1,614 ms
348,188 KB
testcase_06 AC 1,606 ms
349,396 KB
testcase_07 AC 1,624 ms
348,432 KB
testcase_08 AC 701 ms
139,836 KB
testcase_09 AC 700 ms
151,740 KB
testcase_10 AC 1,655 ms
300,668 KB
testcase_11 AC 1,613 ms
344,656 KB
testcase_12 AC 681 ms
142,712 KB
testcase_13 AC 438 ms
105,852 KB
testcase_14 AC 754 ms
164,832 KB
testcase_15 AC 711 ms
149,912 KB
testcase_16 AC 430 ms
106,516 KB
testcase_17 AC 578 ms
131,348 KB
testcase_18 AC 467 ms
129,660 KB
testcase_19 AC 570 ms
122,120 KB
testcase_20 AC 728 ms
166,468 KB
testcase_21 AC 131 ms
80,856 KB
testcase_22 AC 573 ms
134,924 KB
testcase_23 AC 584 ms
139,540 KB
testcase_24 AC 415 ms
123,496 KB
testcase_25 AC 736 ms
165,308 KB
testcase_26 AC 641 ms
144,432 KB
testcase_27 AC 730 ms
158,836 KB
testcase_28 AC 723 ms
153,108 KB
testcase_29 AC 684 ms
157,920 KB
testcase_30 AC 445 ms
112,680 KB
testcase_31 AC 385 ms
100,340 KB
testcase_32 AC 379 ms
112,116 KB
testcase_33 AC 415 ms
112,268 KB
testcase_34 AC 703 ms
147,356 KB
testcase_35 AC 180 ms
82,024 KB
testcase_36 AC 680 ms
150,244 KB
testcase_37 AC 632 ms
135,756 KB
testcase_38 AC 285 ms
92,484 KB
testcase_39 AC 429 ms
114,656 KB
testcase_40 AC 282 ms
93,436 KB
testcase_41 AC 545 ms
119,920 KB
testcase_42 AC 39 ms
52,536 KB
testcase_43 AC 40 ms
52,736 KB
testcase_44 AC 38 ms
53,012 KB
testcase_45 AC 686 ms
169,192 KB
testcase_46 AC 697 ms
169,656 KB
testcase_47 AC 695 ms
169,184 KB
testcase_48 AC 691 ms
169,404 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):
  global ans
  res = 0
  for u,z,num in edge[v]:
    if used[num]==False:
      used[num] = True
      v_num = dfs(u)
      ans += v_num*(N-v_num)*pow(X,z,mod)
      ans %= mod
      res += v_num
  return res+1

used = [False]*(N-1)
ans = 0
mod = 10**9+7
dfs(0)

print(ans)
0