結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー 👑 potato167potato167
提出日時 2022-02-17 01:23:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 98,124 KB
最終ジャッジ日時 2024-06-29 07:24:35
合計ジャッジ時間 7,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,456 KB
testcase_01 AC 32 ms
51,840 KB
testcase_02 AC 33 ms
51,968 KB
testcase_03 AC 218 ms
96,128 KB
testcase_04 AC 232 ms
96,896 KB
testcase_05 AC 242 ms
96,256 KB
testcase_06 AC 257 ms
96,384 KB
testcase_07 AC 246 ms
96,128 KB
testcase_08 AC 176 ms
89,472 KB
testcase_09 AC 121 ms
81,920 KB
testcase_10 AC 121 ms
82,816 KB
testcase_11 AC 99 ms
78,464 KB
testcase_12 AC 149 ms
86,784 KB
testcase_13 AC 164 ms
88,576 KB
testcase_14 AC 163 ms
89,600 KB
testcase_15 AC 142 ms
85,792 KB
testcase_16 AC 89 ms
77,472 KB
testcase_17 AC 85 ms
77,440 KB
testcase_18 AC 214 ms
92,288 KB
testcase_19 AC 96 ms
78,080 KB
testcase_20 AC 81 ms
76,928 KB
testcase_21 AC 133 ms
84,736 KB
testcase_22 AC 127 ms
83,712 KB
testcase_23 AC 78 ms
77,056 KB
testcase_24 AC 84 ms
76,928 KB
testcase_25 AC 82 ms
76,908 KB
testcase_26 AC 81 ms
77,056 KB
testcase_27 AC 48 ms
62,720 KB
testcase_28 AC 61 ms
70,272 KB
testcase_29 AC 94 ms
77,184 KB
testcase_30 AC 88 ms
77,172 KB
testcase_31 AC 81 ms
76,928 KB
testcase_32 AC 86 ms
77,312 KB
testcase_33 AC 97 ms
78,848 KB
testcase_34 AC 232 ms
95,744 KB
testcase_35 AC 129 ms
83,968 KB
testcase_36 AC 89 ms
77,568 KB
testcase_37 AC 196 ms
98,124 KB
testcase_38 AC 163 ms
94,524 KB
testcase_39 AC 37 ms
51,840 KB
testcase_40 AC 34 ms
51,840 KB
testcase_41 AC 33 ms
51,840 KB
testcase_42 AC 32 ms
51,840 KB
testcase_43 AC 35 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
G=[[]for i in range(N)]
for i in range(N-1):
	a,b=map(int,input().split())
	a-=1
	b-=1
	G[a].append(b)
	G[b].append(a)
order=[0]
pare=[-1]*N
pare[0]=-2
size=[0]*N
dp=[0]*N
for i in range(N):
	a=order[i]
	for x in G[a]:
		if pare[x]==-1:
			pare[x]=a
			order.append(x)
for i in range(N):
	a=order[N-1-i]
	for x in G[a]:
		if x!=pare[a]:
			size[a]+=size[x]
	size[a]+=1
	dp[0]+=size[a]
ans=0
for i in range(N):
	a=order[i]
	for x in G[a]:
		if pare[x]==a:
			dp[x]=dp[a]+N-2*size[x]
	ans+=dp[a]
print(ans)
0