結果

問題 No.1207 グラフX
ユーザー marroncastlemarroncastle
提出日時 2020-08-30 18:46:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,486 ms / 2,000 ms
コード長 1,161 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 350,308 KB
最終ジャッジ日時 2024-11-15 15:12:04
合計ジャッジ時間 31,726 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 676 ms
168,704 KB
testcase_01 AC 644 ms
168,960 KB
testcase_02 AC 644 ms
168,320 KB
testcase_03 AC 643 ms
168,908 KB
testcase_04 AC 633 ms
168,832 KB
testcase_05 AC 1,400 ms
347,448 KB
testcase_06 AC 1,469 ms
347,052 KB
testcase_07 AC 1,423 ms
347,748 KB
testcase_08 AC 600 ms
138,672 KB
testcase_09 AC 620 ms
149,504 KB
testcase_10 AC 1,486 ms
309,480 KB
testcase_11 AC 1,463 ms
350,308 KB
testcase_12 AC 600 ms
142,208 KB
testcase_13 AC 357 ms
105,208 KB
testcase_14 AC 654 ms
166,016 KB
testcase_15 AC 622 ms
148,480 KB
testcase_16 AC 372 ms
106,880 KB
testcase_17 AC 507 ms
131,012 KB
testcase_18 AC 417 ms
129,920 KB
testcase_19 AC 482 ms
121,088 KB
testcase_20 AC 665 ms
166,144 KB
testcase_21 AC 102 ms
80,344 KB
testcase_22 AC 506 ms
131,004 KB
testcase_23 AC 520 ms
138,776 KB
testcase_24 AC 369 ms
121,112 KB
testcase_25 AC 659 ms
165,908 KB
testcase_26 AC 562 ms
143,460 KB
testcase_27 AC 636 ms
157,440 KB
testcase_28 AC 617 ms
151,892 KB
testcase_29 AC 602 ms
156,524 KB
testcase_30 AC 381 ms
111,872 KB
testcase_31 AC 316 ms
100,288 KB
testcase_32 AC 327 ms
111,232 KB
testcase_33 AC 345 ms
110,336 KB
testcase_34 AC 600 ms
145,104 KB
testcase_35 AC 141 ms
81,708 KB
testcase_36 AC 587 ms
148,608 KB
testcase_37 AC 524 ms
134,784 KB
testcase_38 AC 230 ms
92,288 KB
testcase_39 AC 356 ms
112,768 KB
testcase_40 AC 221 ms
93,380 KB
testcase_41 AC 447 ms
119,404 KB
testcase_42 AC 38 ms
51,968 KB
testcase_43 AC 38 ms
52,352 KB
testcase_44 AC 38 ms
52,480 KB
testcase_45 AC 613 ms
167,424 KB
testcase_46 AC 618 ms
167,344 KB
testcase_47 AC 609 ms
167,424 KB
testcase_48 AC 594 ms
167,316 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)

import sys
sys.setrecursionlimit(10**6)
input = sys.stdin.readline
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
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