結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー H3PO4H3PO4
提出日時 2022-05-09 13:32:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 38,016 KB
最終ジャッジ日時 2024-07-16 11:56:08
合計ジャッジ時間 9,352 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 443 ms
35,328 KB
testcase_04 AC 421 ms
35,328 KB
testcase_05 AC 420 ms
35,456 KB
testcase_06 AC 432 ms
35,328 KB
testcase_07 AC 428 ms
35,328 KB
testcase_08 AC 281 ms
27,392 KB
testcase_09 AC 136 ms
18,432 KB
testcase_10 AC 149 ms
19,456 KB
testcase_11 AC 95 ms
15,360 KB
testcase_12 AC 224 ms
23,808 KB
testcase_13 AC 271 ms
26,240 KB
testcase_14 AC 272 ms
27,008 KB
testcase_15 AC 218 ms
23,040 KB
testcase_16 AC 49 ms
12,032 KB
testcase_17 AC 49 ms
12,416 KB
testcase_18 AC 390 ms
33,280 KB
testcase_19 AC 86 ms
14,976 KB
testcase_20 AC 36 ms
11,392 KB
testcase_21 AC 206 ms
22,400 KB
testcase_22 AC 178 ms
20,992 KB
testcase_23 AC 39 ms
11,776 KB
testcase_24 AC 38 ms
11,648 KB
testcase_25 AC 36 ms
11,264 KB
testcase_26 AC 41 ms
11,520 KB
testcase_27 AC 29 ms
10,880 KB
testcase_28 AC 31 ms
11,008 KB
testcase_29 AC 42 ms
11,904 KB
testcase_30 AC 42 ms
11,776 KB
testcase_31 AC 34 ms
11,392 KB
testcase_32 AC 37 ms
11,392 KB
testcase_33 AC 102 ms
16,768 KB
testcase_34 AC 412 ms
38,016 KB
testcase_35 AC 169 ms
22,144 KB
testcase_36 AC 67 ms
14,336 KB
testcase_37 AC 383 ms
37,888 KB
testcase_38 AC 338 ms
35,968 KB
testcase_39 AC 29 ms
10,880 KB
testcase_40 AC 28 ms
10,752 KB
testcase_41 AC 28 ms
10,752 KB
testcase_42 AC 27 ms
10,752 KB
testcase_43 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque

input = sys.stdin.buffer.readline

N = int(input())
T = [[] for _ in range(N)]
for _ in range(N - 1):
    a, b = (int(x) - 1 for x in input().split())
    T[a].append(b)
    T[b].append(a)

d = deque([(0, -1)])
dfs_order = []

while d:
    v, p = d.pop()
    for x in T[v]:
        if x == p:
            continue
        dfs_order.append((x, v))
        d.append((x, v))

subtree_size = [1] * N

for x, v in reversed(dfs_order):
    subtree_size[v] += subtree_size[x]

ans = N * N
for v in range(N):
    ans += subtree_size[v] * (N - subtree_size[v]) * 2
print(ans)
0