結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-06-19 16:19:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 357 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 178,344 KB
最終ジャッジ日時 2024-06-22 22:08:47
合計ジャッジ時間 7,756 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,824 KB
testcase_01 AC 32 ms
53,544 KB
testcase_02 AC 33 ms
52,680 KB
testcase_03 AC 225 ms
88,956 KB
testcase_04 AC 226 ms
89,232 KB
testcase_05 AC 234 ms
89,320 KB
testcase_06 AC 233 ms
89,024 KB
testcase_07 AC 226 ms
89,108 KB
testcase_08 AC 182 ms
85,344 KB
testcase_09 AC 130 ms
80,944 KB
testcase_10 AC 144 ms
81,072 KB
testcase_11 AC 114 ms
79,080 KB
testcase_12 AC 161 ms
83,440 KB
testcase_13 AC 172 ms
84,252 KB
testcase_14 AC 180 ms
85,332 KB
testcase_15 AC 149 ms
83,212 KB
testcase_16 AC 86 ms
77,636 KB
testcase_17 AC 89 ms
77,296 KB
testcase_18 AC 233 ms
87,908 KB
testcase_19 AC 101 ms
79,188 KB
testcase_20 AC 81 ms
77,648 KB
testcase_21 AC 144 ms
82,676 KB
testcase_22 AC 137 ms
82,284 KB
testcase_23 AC 84 ms
77,464 KB
testcase_24 AC 89 ms
77,284 KB
testcase_25 AC 86 ms
76,956 KB
testcase_26 AC 84 ms
77,268 KB
testcase_27 AC 47 ms
63,304 KB
testcase_28 AC 61 ms
69,196 KB
testcase_29 AC 88 ms
77,136 KB
testcase_30 AC 85 ms
77,000 KB
testcase_31 AC 78 ms
77,100 KB
testcase_32 AC 84 ms
77,040 KB
testcase_33 AC 118 ms
94,928 KB
testcase_34 AC 357 ms
178,344 KB
testcase_35 AC 159 ms
109,780 KB
testcase_36 AC 77 ms
77,700 KB
testcase_37 AC 170 ms
91,476 KB
testcase_38 AC 156 ms
89,460 KB
testcase_39 AC 34 ms
53,732 KB
testcase_40 AC 34 ms
53,500 KB
testcase_41 AC 34 ms
52,888 KB
testcase_42 AC 34 ms
52,572 KB
testcase_43 AC 33 ms
53,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(2*10**5)
n = int(input())
e = [[] for i in range(n)]
for i in range(n-1):
    a,b = map(int,input().split())
    e[a-1].append(b-1)
    e[b-1].append(a-1)

size = [0]*n
def dfs(x,p=-1):
    s = 0
    for nex in e[x]:
        if nex == p:
            continue
        s += dfs(nex,x)
    s += 1
    size[x] = s
    return s

dfs(0)
ans = n*n
for i in range(n):
    p = -1
    c = 0
    for nex in e[i]:
        if size[nex] > size[i]:
            p = nex
        else:
            ans += size[nex]*(n-size[nex])
            c += size[nex]
    if p != -1:
        ans += (n-c-1)*(c+1) 
print(ans)
0