結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー terasaterasa
提出日時 2022-06-12 23:53:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 484 ms / 2,000 ms
コード長 1,344 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 182,528 KB
最終ジャッジ日時 2024-09-24 12:06:04
合計ジャッジ時間 8,074 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,560 KB
testcase_01 AC 41 ms
55,144 KB
testcase_02 AC 41 ms
55,020 KB
testcase_03 AC 236 ms
88,916 KB
testcase_04 AC 242 ms
88,896 KB
testcase_05 AC 235 ms
89,288 KB
testcase_06 AC 230 ms
89,584 KB
testcase_07 AC 254 ms
89,368 KB
testcase_08 AC 178 ms
84,792 KB
testcase_09 AC 110 ms
80,608 KB
testcase_10 AC 119 ms
81,212 KB
testcase_11 AC 90 ms
79,108 KB
testcase_12 AC 155 ms
83,264 KB
testcase_13 AC 162 ms
84,320 KB
testcase_14 AC 176 ms
84,920 KB
testcase_15 AC 147 ms
83,072 KB
testcase_16 AC 80 ms
77,456 KB
testcase_17 AC 82 ms
77,664 KB
testcase_18 AC 224 ms
87,804 KB
testcase_19 AC 106 ms
79,512 KB
testcase_20 AC 82 ms
76,972 KB
testcase_21 AC 140 ms
82,656 KB
testcase_22 AC 130 ms
81,920 KB
testcase_23 AC 79 ms
77,492 KB
testcase_24 AC 83 ms
77,340 KB
testcase_25 AC 82 ms
76,912 KB
testcase_26 AC 79 ms
77,448 KB
testcase_27 AC 51 ms
64,004 KB
testcase_28 AC 61 ms
69,120 KB
testcase_29 AC 83 ms
77,096 KB
testcase_30 AC 79 ms
77,540 KB
testcase_31 AC 73 ms
74,688 KB
testcase_32 AC 77 ms
77,132 KB
testcase_33 AC 130 ms
96,156 KB
testcase_34 AC 484 ms
182,528 KB
testcase_35 AC 209 ms
118,728 KB
testcase_36 AC 73 ms
77,944 KB
testcase_37 AC 173 ms
90,824 KB
testcase_38 AC 155 ms
89,220 KB
testcase_39 AC 42 ms
56,208 KB
testcase_40 AC 42 ms
56,276 KB
testcase_41 AC 40 ms
55,376 KB
testcase_42 AC 41 ms
55,692 KB
testcase_43 AC 42 ms
55,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


def index_lt(a, x):
    'return largest index s.t. A[i] < x or -1 if it does not exist'
    return bisect.bisect_left(a, x) - 1


def index_le(a, x):
    'return largest index s.t. A[i] <= x or -1 if it does not exist'
    return bisect.bisect_right(a, x) - 1


def index_gt(a, x):
    'return smallest index s.t. A[i] > x or len(a) if it does not exist'
    return bisect.bisect_right(a, x)


def index_ge(a, x):
    'return smallest index s.t. A[i] >= x or len(a) if it does not exist'
    return bisect.bisect_left(a, x)


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


def dfs(v, p):
    res = 1
    for d in E[v]:
        if d == p:
            continue
        res += dfs(d, v)
    cnt[v] = res
    return res


def dfs2(v, p):
    global ans, acc
    if not p < 0:
        acc += N - 2 * cnt[v]
    ans += acc
    for d in E[v]:
        if d == p:
            continue
        dfs2(d, v)
    acc -= N - 2 * cnt[v]


dfs(0, -1)
ans = 0
acc = sum(cnt)
dfs2(0, -1)
print(ans)
0