結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー tamatotamato
提出日時 2021-03-05 21:42:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 1,047 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 104,888 KB
最終ジャッジ日時 2024-10-07 01:11:50
合計ジャッジ時間 6,947 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,760 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 42 ms
54,016 KB
testcase_03 AC 251 ms
104,320 KB
testcase_04 AC 246 ms
104,320 KB
testcase_05 AC 232 ms
104,320 KB
testcase_06 AC 253 ms
104,576 KB
testcase_07 AC 247 ms
104,448 KB
testcase_08 AC 209 ms
92,800 KB
testcase_09 AC 136 ms
83,072 KB
testcase_10 AC 121 ms
82,560 KB
testcase_11 AC 111 ms
80,256 KB
testcase_12 AC 157 ms
90,880 KB
testcase_13 AC 171 ms
90,880 KB
testcase_14 AC 181 ms
92,160 KB
testcase_15 AC 158 ms
89,472 KB
testcase_16 AC 96 ms
78,208 KB
testcase_17 AC 94 ms
77,952 KB
testcase_18 AC 228 ms
102,272 KB
testcase_19 AC 99 ms
80,000 KB
testcase_20 AC 88 ms
77,056 KB
testcase_21 AC 151 ms
89,472 KB
testcase_22 AC 149 ms
87,808 KB
testcase_23 AC 91 ms
77,440 KB
testcase_24 AC 89 ms
77,440 KB
testcase_25 AC 89 ms
77,184 KB
testcase_26 AC 98 ms
77,440 KB
testcase_27 AC 50 ms
61,184 KB
testcase_28 AC 63 ms
66,688 KB
testcase_29 AC 91 ms
77,952 KB
testcase_30 AC 95 ms
77,696 KB
testcase_31 AC 74 ms
71,552 KB
testcase_32 AC 91 ms
77,312 KB
testcase_33 AC 98 ms
81,024 KB
testcase_34 AC 171 ms
98,048 KB
testcase_35 AC 105 ms
84,352 KB
testcase_36 AC 83 ms
78,848 KB
testcase_37 AC 177 ms
104,888 KB
testcase_38 AC 159 ms
102,144 KB
testcase_39 AC 44 ms
53,888 KB
testcase_40 AC 43 ms
53,888 KB
testcase_41 AC 43 ms
54,016 KB
testcase_42 AC 42 ms
53,888 KB
testcase_43 AC 41 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from collections import deque
    input = sys.stdin.buffer.readline

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

    que = deque()
    que.append(1)
    seen = [-1] * (N+1)
    seen[1] = 0
    par = [0] * (N+1)
    child = [[] for _ in range(N+1)]
    seq = []
    while que:
        v = que.popleft()
        seq.append(v)
        for u in adj[v]:
            if seen[u] == -1:
                seen[u] = seen[v] + 1
                par[u] = v
                child[v].append(u)
                que.append(u)
    seq.reverse()

    size = [1] * (N+1)
    for v in seq:
        for u in child[v]:
            size[v] += size[u]
    ans = N * N
    for v in seq:
        # par
        ans += size[v] * (N - size[v])
        # child
        for u in child[v]:
            ans += size[u] * (N - size[u])
    print(ans)


if __name__ == '__main__':
    main()
0