結果

問題 No.1103 Directed Length Sum
ユーザー takakintakakin
提出日時 2020-07-31 00:25:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 654 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 376,688 KB
最終ジャッジ日時 2024-07-05 00:54:28
合計ジャッジ時間 26,588 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 1,076 ms
373,760 KB
testcase_03 AC 945 ms
376,688 KB
testcase_04 AC 1,800 ms
211,240 KB
testcase_05 TLE -
testcase_06 AC 1,082 ms
175,580 KB
testcase_07 AC 222 ms
99,840 KB
testcase_08 AC 338 ms
112,000 KB
testcase_09 AC 155 ms
90,240 KB
testcase_10 AC 483 ms
120,064 KB
testcase_11 AC 1,931 ms
244,044 KB
testcase_12 AC 1,070 ms
177,792 KB
testcase_13 AC 485 ms
128,768 KB
testcase_14 AC 134 ms
87,040 KB
testcase_15 AC 805 ms
145,792 KB
testcase_16 AC 2,199 ms
264,448 KB
testcase_17 AC 2,353 ms
265,088 KB
testcase_18 AC 481 ms
125,604 KB
testcase_19 AC 2,022 ms
232,192 KB
testcase_20 AC 191 ms
92,800 KB
testcase_21 AC 330 ms
109,696 KB
testcase_22 AC 1,599 ms
218,368 KB
testcase_23 AC 847 ms
160,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
mod=10**9+7
edge=[[] for i in range(n)]
edge_r=[[] for i in range(n)]
A=[True]*n
for i in range(n-1):
	a,b=map(int,input().split())
	edge[a-1].append(b-1)
	edge_r[b-1].append(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]:
	s=TS[i]
	for g in edge_r[s]:
		C[g]+=C[s]+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:
		s,g=edge_r[i][0],i
		ans=(ans+(P[s]+1)*(C[g]+1))%mod
print(ans)
0