結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-03-11 14:19:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 112,188 KB
最終ジャッジ日時 2024-10-13 02:47:10
合計ジャッジ時間 9,030 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,940 KB
testcase_01 AC 39 ms
53,540 KB
testcase_02 AC 42 ms
52,520 KB
testcase_03 AC 307 ms
105,460 KB
testcase_04 AC 300 ms
106,304 KB
testcase_05 AC 289 ms
106,096 KB
testcase_06 AC 291 ms
105,760 KB
testcase_07 AC 292 ms
105,792 KB
testcase_08 AC 221 ms
96,728 KB
testcase_09 AC 146 ms
85,240 KB
testcase_10 AC 155 ms
86,240 KB
testcase_11 AC 128 ms
81,272 KB
testcase_12 AC 195 ms
92,284 KB
testcase_13 AC 203 ms
94,792 KB
testcase_14 AC 220 ms
94,944 KB
testcase_15 AC 179 ms
90,060 KB
testcase_16 AC 98 ms
77,040 KB
testcase_17 AC 101 ms
77,268 KB
testcase_18 AC 264 ms
100,668 KB
testcase_19 AC 122 ms
81,020 KB
testcase_20 AC 92 ms
77,384 KB
testcase_21 AC 177 ms
90,500 KB
testcase_22 AC 158 ms
85,764 KB
testcase_23 AC 101 ms
77,316 KB
testcase_24 AC 98 ms
77,588 KB
testcase_25 AC 96 ms
76,980 KB
testcase_26 AC 97 ms
77,600 KB
testcase_27 AC 51 ms
61,812 KB
testcase_28 AC 72 ms
71,192 KB
testcase_29 AC 97 ms
77,528 KB
testcase_30 AC 104 ms
77,220 KB
testcase_31 AC 93 ms
76,856 KB
testcase_32 AC 98 ms
77,064 KB
testcase_33 AC 118 ms
81,328 KB
testcase_34 AC 229 ms
103,824 KB
testcase_35 AC 143 ms
86,084 KB
testcase_36 AC 92 ms
77,608 KB
testcase_37 AC 231 ms
112,188 KB
testcase_38 AC 246 ms
110,452 KB
testcase_39 AC 37 ms
52,080 KB
testcase_40 AC 36 ms
53,408 KB
testcase_41 AC 37 ms
52,356 KB
testcase_42 AC 38 ms
52,528 KB
testcase_43 AC 38 ms
52,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ab=[list(map(int,input().split())) for _ in range(n-1)]
ki=[[] for _ in range(n)]
for a,b in ab:
  a,b=a-1,b-1
  ki[a].append(b)
  ki[b].append(a)
# tree_order
todo=[[0,-1]]
order=[]
while todo:
  v,p=todo.pop()
  order.append(v)
  for nv in ki[v]:
    if nv!=p:
      todo.append([nv,v])
order.reverse()
to_ary=[1]*n
seen=[0]*n
ans=[0]*n
for v in order:
  seen[v]=1
  for nv in ki[v]:
    if seen[nv]==0:
      ans[v]+=(n-to_ary[v])*(to_ary[v]) # 根の個数 x サイズ
      to_ary[nv]+=to_ary[v]
    else:
      ans[v]+=(n-to_ary[nv])*(to_ary[nv])
  ans[v]+=n
print(sum(ans))

0