結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー roarisroaris
提出日時 2021-03-05 21:52:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 182,016 KB
最終ジャッジ日時 2024-10-07 01:32:59
合計ジャッジ時間 8,039 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,420 KB
testcase_01 AC 40 ms
53,504 KB
testcase_02 AC 43 ms
53,888 KB
testcase_03 AC 272 ms
90,240 KB
testcase_04 AC 286 ms
90,368 KB
testcase_05 AC 255 ms
90,684 KB
testcase_06 AC 270 ms
90,240 KB
testcase_07 AC 280 ms
90,112 KB
testcase_08 AC 218 ms
86,272 KB
testcase_09 AC 133 ms
80,768 KB
testcase_10 AC 149 ms
81,320 KB
testcase_11 AC 123 ms
79,232 KB
testcase_12 AC 179 ms
84,464 KB
testcase_13 AC 193 ms
85,572 KB
testcase_14 AC 207 ms
85,836 KB
testcase_15 AC 160 ms
83,584 KB
testcase_16 AC 93 ms
77,184 KB
testcase_17 AC 93 ms
77,696 KB
testcase_18 AC 241 ms
89,360 KB
testcase_19 AC 113 ms
79,232 KB
testcase_20 AC 90 ms
77,568 KB
testcase_21 AC 154 ms
83,708 KB
testcase_22 AC 157 ms
82,544 KB
testcase_23 AC 87 ms
77,356 KB
testcase_24 AC 91 ms
77,396 KB
testcase_25 AC 76 ms
74,492 KB
testcase_26 AC 89 ms
76,800 KB
testcase_27 AC 52 ms
62,464 KB
testcase_28 AC 59 ms
66,304 KB
testcase_29 AC 89 ms
77,176 KB
testcase_30 AC 89 ms
77,056 KB
testcase_31 AC 74 ms
73,984 KB
testcase_32 AC 83 ms
76,800 KB
testcase_33 AC 129 ms
95,232 KB
testcase_34 AC 471 ms
182,016 KB
testcase_35 AC 205 ms
115,840 KB
testcase_36 AC 79 ms
77,696 KB
testcase_37 AC 190 ms
90,276 KB
testcase_38 AC 164 ms
89,276 KB
testcase_39 AC 43 ms
53,632 KB
testcase_40 AC 44 ms
53,504 KB
testcase_41 AC 43 ms
53,248 KB
testcase_42 AC 41 ms
53,760 KB
testcase_43 AC 41 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**5+10)
from collections import *

def dfs1(v, pv):
    for nv in G[v]:
        if nv==pv:
            continue
        
        dfs1(nv, v)
        num[v] += num[nv]

def dfs2(v, pv):
    for nv in G[v]:
        if nv==pv:
            continue
        
        ans[nv] = ans[v]+N-2*num[nv]
        dfs2(nv, v)
    
N = int(input())
G = [[] for _ in range(N)]

for _ in range(N-1):
    A, B = map(int, input().split())
    G[A-1].append(B-1)
    G[B-1].append(A-1)
    
num = [1]*N
dfs1(0, -1)
ans = [-1]*N
ans[0] = sum(num)
dfs2(0, -1)
print(sum(ans))
0