結果

問題 No.1207 グラフX
ユーザー 双六双六
提出日時 2020-08-31 23:36:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,809 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 357,236 KB
最終ジャッジ日時 2024-11-17 02:49:48
合計ジャッジ時間 39,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 746 ms
162,964 KB
testcase_01 AC 710 ms
165,160 KB
testcase_02 AC 694 ms
161,484 KB
testcase_03 AC 690 ms
164,852 KB
testcase_04 AC 697 ms
165,452 KB
testcase_05 AC 1,972 ms
356,992 KB
testcase_06 TLE -
testcase_07 AC 1,946 ms
356,364 KB
testcase_08 AC 786 ms
127,232 KB
testcase_09 AC 745 ms
143,232 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 717 ms
133,120 KB
testcase_13 AC 464 ms
88,960 KB
testcase_14 AC 803 ms
164,820 KB
testcase_15 AC 760 ms
141,824 KB
testcase_16 AC 461 ms
93,568 KB
testcase_17 AC 571 ms
119,936 KB
testcase_18 AC 470 ms
118,912 KB
testcase_19 AC 612 ms
106,112 KB
testcase_20 AC 740 ms
165,708 KB
testcase_21 AC 151 ms
77,824 KB
testcase_22 AC 619 ms
120,832 KB
testcase_23 AC 644 ms
133,120 KB
testcase_24 AC 408 ms
113,024 KB
testcase_25 AC 765 ms
163,624 KB
testcase_26 AC 702 ms
133,492 KB
testcase_27 AC 814 ms
149,856 KB
testcase_28 AC 702 ms
140,612 KB
testcase_29 AC 686 ms
146,316 KB
testcase_30 AC 476 ms
103,296 KB
testcase_31 AC 411 ms
86,016 KB
testcase_32 AC 410 ms
104,192 KB
testcase_33 AC 462 ms
103,936 KB
testcase_34 AC 733 ms
135,680 KB
testcase_35 AC 185 ms
78,592 KB
testcase_36 AC 755 ms
142,592 KB
testcase_37 AC 651 ms
128,128 KB
testcase_38 AC 300 ms
86,784 KB
testcase_39 AC 458 ms
105,088 KB
testcase_40 AC 261 ms
78,976 KB
testcase_41 AC 593 ms
108,416 KB
testcase_42 AC 46 ms
54,016 KB
testcase_43 AC 45 ms
54,272 KB
testcase_44 AC 46 ms
54,272 KB
testcase_45 AC 687 ms
162,824 KB
testcase_46 AC 683 ms
162,788 KB
testcase_47 AC 631 ms
162,812 KB
testcase_48 AC 635 ms
162,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

class UnionFind:
	def __init__(self, n):
		self.par = [i for i in range(n + 1)]
		self.rank = [0] * (n + 1)
		self.size = [1] * (n + 1)

	def find(self, x):
		if self.par[x] == x:
			return x
		else:
			self.par[x] = self.find(self.par[x])
			return self.par[x]

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

	def union(self, x, y):
		x = self.find(x); y = self.find(y)
		if self.rank[x] < self.rank[y]:
			if self.same_check(x, y) != True:
				self.size[y] += self.size[x]
				self.size[x] = 0
			self.par[x] = y
		else:
			if self.same_check(x, y) != True:
				self.size[x] += self.size[y]
				self.size[y] = 0
			self.par[y] = x
			if self.rank[x] == self.rank[y]:
				self.rank[x] += 1


class Graph(object):
	def __init__(self):
		self.graph = defaultdict(list)

	def __len__(self):
		return len(self.graph)

	def add_edge(self, a, b):
		self.graph[a].append(b)

ans = 0

def DFS(N, G, W, visit, node, D, X):
	for i in G.graph[node]:
		if visit[i] != 1:
			visit[i] = 1
			DFS(N, G, W, visit, i, D, X)
			W[node] += W[i]
			a, b = list(sorted([node, i]))
			global ans
			ans += (N - W[i]) * W[i] * pow(X, D[(10 ** 6) * a + b], con)
			ans %= con

#処理内容
def main():
	N, M, X = getlist()
	UF = UnionFind(N)
	D = defaultdict(int)
	G = Graph()
	for i in range(M):
		x, y, z = getlist()
		x -= 1; y -= 1
		x, y = list(sorted([x, y]))
		if not UF.same_check(x, y):
			UF.union(x, y)
			G.add_edge(x, y)
			G.add_edge(y, x)
			D[(10 ** 6) * x + y] = z

	W = [1] * N
	visit = [0] * N
	visit[0] = 1
	DFS(N, G, W, visit, 0, D, X)
	print(ans)

if __name__ == '__main__':
	main()
0