結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー titiatitia
提出日時 2021-03-05 21:54:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 102,288 KB
最終ジャッジ日時 2024-10-07 01:35:22
合計ジャッジ時間 5,818 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 203 ms
94,624 KB
testcase_04 AC 192 ms
95,488 KB
testcase_05 AC 194 ms
95,928 KB
testcase_06 AC 194 ms
96,000 KB
testcase_07 AC 192 ms
95,736 KB
testcase_08 AC 134 ms
88,936 KB
testcase_09 AC 89 ms
81,148 KB
testcase_10 AC 93 ms
81,792 KB
testcase_11 AC 83 ms
78,720 KB
testcase_12 AC 115 ms
84,440 KB
testcase_13 AC 135 ms
88,124 KB
testcase_14 AC 134 ms
88,832 KB
testcase_15 AC 113 ms
83,584 KB
testcase_16 AC 64 ms
71,040 KB
testcase_17 AC 65 ms
72,192 KB
testcase_18 AC 169 ms
92,776 KB
testcase_19 AC 78 ms
78,080 KB
testcase_20 AC 60 ms
68,480 KB
testcase_21 AC 107 ms
83,456 KB
testcase_22 AC 103 ms
82,564 KB
testcase_23 AC 61 ms
69,504 KB
testcase_24 AC 61 ms
68,480 KB
testcase_25 AC 62 ms
68,992 KB
testcase_26 AC 59 ms
68,736 KB
testcase_27 AC 42 ms
58,496 KB
testcase_28 AC 55 ms
64,768 KB
testcase_29 AC 62 ms
70,016 KB
testcase_30 AC 64 ms
70,496 KB
testcase_31 AC 57 ms
66,688 KB
testcase_32 AC 61 ms
68,992 KB
testcase_33 AC 78 ms
79,612 KB
testcase_34 AC 173 ms
93,824 KB
testcase_35 AC 93 ms
83,164 KB
testcase_36 AC 58 ms
73,216 KB
testcase_37 AC 141 ms
102,288 KB
testcase_38 AC 131 ms
99,680 KB
testcase_39 AC 36 ms
51,840 KB
testcase_40 AC 37 ms
51,840 KB
testcase_41 AC 37 ms
51,584 KB
testcase_42 AC 38 ms
51,968 KB
testcase_43 AC 37 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
E=[[] for i in range(N+1)]

for i in range(N-1):
    a,b=map(int,input().split())
    E[a].append(b)
    E[b].append(a)

ROOT=1

QUE=[ROOT] 
Parent=[-1]*(N+1)
Parent[ROOT]=0 # ROOTの親を定めておく.
TOP_SORT=[] # トポロジカルソート

while QUE: # トポロジカルソートと同時に親を見つける
    x=QUE.pop()
    TOP_SORT.append(x)
    for to in E[x]:
        if Parent[to]==-1:
            Parent[to]=x
            QUE.append(to)

Children=[1]*(N+1)

for x in TOP_SORT[::-1]: #(自分を含む)子ノードの数を調べる
    Children[Parent[x]]+=Children[x]

ANS=N*N
for i in range(1,N+1):
    x=Children[i]-1
    y=N-x-1

    ANS+=(x+1)*y+y*(x+1)

print(ANS)
0