結果

問題 No.827 総神童数
ユーザー 双六双六
提出日時 2020-08-04 04:02:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 444 ms / 2,000 ms
コード長 1,580 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 123,400 KB
最終ジャッジ日時 2024-09-13 23:27:52
合計ジャッジ時間 11,004 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,144 KB
testcase_01 AC 42 ms
53,888 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 AC 46 ms
53,888 KB
testcase_04 AC 43 ms
54,144 KB
testcase_05 AC 43 ms
54,016 KB
testcase_06 AC 43 ms
54,400 KB
testcase_07 AC 43 ms
54,144 KB
testcase_08 AC 43 ms
54,144 KB
testcase_09 AC 289 ms
122,700 KB
testcase_10 AC 137 ms
90,192 KB
testcase_11 AC 71 ms
73,472 KB
testcase_12 AC 101 ms
83,928 KB
testcase_13 AC 230 ms
109,508 KB
testcase_14 AC 80 ms
77,764 KB
testcase_15 AC 128 ms
87,936 KB
testcase_16 AC 244 ms
108,352 KB
testcase_17 AC 276 ms
121,672 KB
testcase_18 AC 149 ms
93,728 KB
testcase_19 AC 444 ms
123,400 KB
testcase_20 AC 340 ms
106,488 KB
testcase_21 AC 251 ms
98,476 KB
testcase_22 AC 355 ms
110,516 KB
testcase_23 AC 68 ms
70,400 KB
testcase_24 AC 407 ms
114,816 KB
testcase_25 AC 308 ms
104,232 KB
testcase_26 AC 418 ms
115,124 KB
testcase_27 AC 285 ms
100,952 KB
testcase_28 AC 278 ms
99,048 KB
testcase_29 AC 226 ms
95,616 KB
testcase_30 AC 122 ms
83,584 KB
testcase_31 AC 198 ms
91,520 KB
testcase_32 AC 184 ms
89,728 KB
testcase_33 AC 430 ms
123,388 KB
testcase_34 AC 401 ms
114,700 KB
testcase_35 AC 198 ms
91,776 KB
testcase_36 AC 250 ms
96,896 KB
testcase_37 AC 310 ms
104,868 KB
testcase_38 AC 417 ms
119,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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)

class BFS(object):
	def __init__(self, graph, s, N):
		self.g = graph.graph
		self.Q = deque(); self.Q.append(s)
		self.dist = [INF] * N; self.dist[s] = 0
		while self.Q:
			v = self.Q.popleft()
			for i in self.g[v]:
				if self.dist[i] == INF:
					self.dist[i] = self.dist[v] + 1
					self.Q.append(i)

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

#処理内容
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)

	BF = BFS(G, 0, N)

	dist = BF.dist
	C = Combination(N, con)
	ans = 0
	for i in range(N):
		ans += C.fac[N] * C.inv[dist[i] + 1]
		ans %= con

	print(ans)

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