結果

問題 No.1207 グラフX
ユーザー marroncastlemarroncastle
提出日時 2020-08-30 15:41:50
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,730 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 392,416 KB
最終ジャッジ日時 2024-04-27 09:06:16
合計ジャッジ時間 34,101 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 673 ms
147,504 KB
testcase_01 AC 640 ms
147,504 KB
testcase_02 AC 625 ms
147,144 KB
testcase_03 AC 623 ms
147,596 KB
testcase_04 AC 641 ms
147,448 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 646 ms
124,172 KB
testcase_09 AC 642 ms
130,884 KB
testcase_10 AC 1,994 ms
392,416 KB
testcase_11 RE -
testcase_12 AC 604 ms
125,604 KB
testcase_13 AC 426 ms
101,096 KB
testcase_14 AC 674 ms
140,768 KB
testcase_15 AC 645 ms
131,084 KB
testcase_16 AC 422 ms
100,844 KB
testcase_17 AC 515 ms
117,580 KB
testcase_18 AC 414 ms
116,564 KB
testcase_19 AC 537 ms
112,080 KB
testcase_20 AC 684 ms
145,616 KB
testcase_21 AC 136 ms
81,224 KB
testcase_22 AC 516 ms
117,224 KB
testcase_23 AC 529 ms
122,384 KB
testcase_24 AC 383 ms
111,416 KB
testcase_25 AC 661 ms
141,656 KB
testcase_26 AC 579 ms
123,880 KB
testcase_27 AC 646 ms
136,524 KB
testcase_28 AC 633 ms
132,248 KB
testcase_29 AC 601 ms
136,112 KB
testcase_30 AC 408 ms
102,988 KB
testcase_31 AC 388 ms
97,672 KB
testcase_32 AC 344 ms
100,744 KB
testcase_33 AC 383 ms
101,332 KB
testcase_34 AC 615 ms
128,464 KB
testcase_35 AC 173 ms
82,192 KB
testcase_36 AC 603 ms
131,592 KB
testcase_37 AC 569 ms
120,576 KB
testcase_38 AC 262 ms
88,444 KB
testcase_39 AC 387 ms
104,536 KB
testcase_40 AC 293 ms
93,168 KB
testcase_41 AC 501 ms
108,972 KB
testcase_42 AC 40 ms
53,944 KB
testcase_43 AC 40 ms
53,604 KB
testcase_44 AC 40 ms
53,900 KB
testcase_45 AC 628 ms
145,660 KB
testcase_46 AC 637 ms
145,256 KB
testcase_47 AC 635 ms
145,324 KB
testcase_48 AC 628 ms
145,264 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)

  def roots(self):
    return [i for i, x in enumerate(self.parents) if x < 0]

  def num_roots(self):
    return len([i for i, x in enumerate(self.parents) if x < 0])

  def members(self, x):
    root = self.find(x)
    return [i for i in range(self.n) if self.find(i) == root]

  def num_members(self,x):
    return abs(self.parents[self.find(x)])

  def __str__(self):
    return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())

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)]
e_length = [0]*(N-1)
num = 0
for x,y,z in A:
  x -= 1
  y -= 1
  if not uf.same(x,y):
    uf.union(x,y)
    e_length[num] = z
    edge[x].append((y,num))
    edge[y].append((x,num))
    num += 1
    if num==N-1:
      break

import sys
sys.setrecursionlimit(10**5)

def dfs(v):
  ans = 0
  for u,num in edge[v]:
    if used[num]==False:
      used[num] = True
      v_num = dfs(u)
      e_cnt[num] = v_num*(N-v_num)
      ans += v_num
  return ans+1

e_cnt = [0]*(N-1)
used = [False]*(N-1)
dfs(0)

mod = 10**9+7
ans = 0
for i in range(N-1):
  ans += e_cnt[i]*pow(X,e_length[i],mod)
  ans %= mod
print(ans)
0