結果

問題 No.758 VVVVV
ユーザー 双六双六
提出日時 2020-08-27 21:51:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 1,495 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 96,640 KB
最終ジャッジ日時 2024-11-08 09:50:41
合計ジャッジ時間 5,393 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,632 KB
testcase_01 AC 48 ms
53,888 KB
testcase_02 AC 47 ms
54,016 KB
testcase_03 AC 250 ms
96,000 KB
testcase_04 AC 156 ms
84,736 KB
testcase_05 AC 129 ms
83,712 KB
testcase_06 AC 128 ms
83,200 KB
testcase_07 AC 245 ms
96,128 KB
testcase_08 AC 158 ms
86,400 KB
testcase_09 AC 101 ms
79,616 KB
testcase_10 AC 138 ms
84,480 KB
testcase_11 AC 258 ms
96,512 KB
testcase_12 AC 115 ms
81,920 KB
testcase_13 AC 124 ms
83,584 KB
testcase_14 AC 109 ms
80,512 KB
testcase_15 AC 97 ms
78,464 KB
testcase_16 AC 96 ms
78,464 KB
testcase_17 AC 234 ms
93,696 KB
testcase_18 AC 147 ms
84,736 KB
testcase_19 AC 245 ms
96,640 KB
testcase_20 AC 123 ms
83,072 KB
testcase_21 AC 122 ms
83,328 KB
testcase_22 AC 257 ms
96,640 KB
testcase_23 AC 48 ms
54,144 KB
testcase_24 AC 48 ms
53,888 KB
testcase_25 AC 48 ms
54,016 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 Combination(object):
	def __init__(self, N, con):
		self.fac = [0] * (N + 1)
		self.inv = [0] * (N + 1)
		self.finv = [0] * (N + 1)
		self.fac[0], self.fac[1] = 1, 1
		self.inv[1] = 1
		self.finv[0], self.finv[1] = 1, 1

		for i in range(2, N + 1):
			self.fac[i] = self.fac[i - 1] * i % con
			self.inv[i] = self.inv[con % i] * (con - (con // i)) % con
			self.finv[i] = self.finv[i - 1] * self.inv[i] % con

	def com(self, N, k):
		return (self.fac[N] * self.finv[k] * self.finv[N - k]) % con

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)

def DFS(G, W, visit, node):
	for i in G.graph[node]:
		if visit[i] != 1:
			visit[i] = 1
			DFS(G, W, visit, i)
			W[node] += W[i]

#処理内容
def main():
	N = int(input())
	G = Graph()
	for i in range(N - 1):
		a, b = getlist()
		a -= 1; b -= 1
		G.add_edge(a, b)
		G.add_edge(b, a)

	W = [1] * N
	visit = [0] * N
	visit[0] = 1
	DFS(G, W, visit, 0)

	#部分木 大きさ
	leaf_cnt = 0
	for i in W:
		if i == 1:
			leaf_cnt += 1

	C = Combination(N, con)
	ans = C.com(N - 1, leaf_cnt - 1) * C.com(N - 2, leaf_cnt - 1) * pow(leaf_cnt, con - 2, con)
	ans %= con
	print(ans)

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