結果

問題 No.1103 Directed Length Sum
ユーザー takakintakakin
提出日時 2020-07-31 00:42:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,095 ms / 3,000 ms
コード長 608 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 261,448 KB
最終ジャッジ日時 2024-07-05 01:26:03
合計ジャッジ時間 18,911 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 675 ms
260,224 KB
testcase_03 AC 603 ms
261,448 KB
testcase_04 AC 1,154 ms
179,456 KB
testcase_05 AC 2,095 ms
218,112 KB
testcase_06 AC 739 ms
141,952 KB
testcase_07 AC 173 ms
91,392 KB
testcase_08 AC 250 ms
99,968 KB
testcase_09 AC 132 ms
84,352 KB
testcase_10 AC 332 ms
108,672 KB
testcase_11 AC 1,334 ms
170,624 KB
testcase_12 AC 731 ms
142,464 KB
testcase_13 AC 321 ms
110,592 KB
testcase_14 AC 112 ms
82,560 KB
testcase_15 AC 533 ms
127,488 KB
testcase_16 AC 1,406 ms
188,032 KB
testcase_17 AC 1,530 ms
207,744 KB
testcase_18 AC 320 ms
108,288 KB
testcase_19 AC 1,297 ms
187,704 KB
testcase_20 AC 143 ms
87,552 KB
testcase_21 AC 224 ms
97,024 KB
testcase_22 AC 1,032 ms
169,216 KB
testcase_23 AC 563 ms
132,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
mod=10**9+7
edge=[[] for i in range(n)]
Par=[0]*n
A=[True]*n
for i in range(n-1):
	a,b=map(int,input().split())
	edge[a-1].append(b-1)
	Par[b-1]=a-1
	A[b-1]=False

for i in range(n):
	if A[i]:
		root=i
		break

TS=[root]
S=[root]
while S:
	s=S.pop()
	for g in edge[s]:
		TS.append(g)
		S.append(g)

ans=0
C=[0]*n
for i in range(n)[:1:-1]:
	C[Par[TS[i]]]+=C[TS[i]]+1

P=[0]*n
for i in range(n):
	s=TS[i]
	for g in edge[s]:
		P[g]+=P[s]+1

for i in range(n):
	if i!=root:
		ans+=(P[Par[i]]+1)*(C[i]+1)
		if ans>=mod:
			ans%=mod
print(ans)
0