結果

問題 No.1098 LCAs
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-09-21 13:52:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,177 ms / 2,000 ms
コード長 1,155 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 287,232 KB
最終ジャッジ日時 2024-07-07 07:36:33
合計ジャッジ時間 13,065 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,936 KB
testcase_01 AC 44 ms
55,424 KB
testcase_02 AC 43 ms
55,424 KB
testcase_03 AC 43 ms
55,936 KB
testcase_04 AC 41 ms
55,552 KB
testcase_05 AC 41 ms
55,168 KB
testcase_06 AC 43 ms
55,680 KB
testcase_07 AC 42 ms
55,424 KB
testcase_08 AC 42 ms
55,808 KB
testcase_09 AC 45 ms
55,552 KB
testcase_10 AC 43 ms
55,424 KB
testcase_11 AC 44 ms
55,552 KB
testcase_12 AC 41 ms
55,296 KB
testcase_13 AC 69 ms
74,388 KB
testcase_14 AC 69 ms
73,308 KB
testcase_15 AC 70 ms
74,532 KB
testcase_16 AC 70 ms
74,240 KB
testcase_17 AC 71 ms
74,368 KB
testcase_18 AC 736 ms
131,912 KB
testcase_19 AC 722 ms
131,968 KB
testcase_20 AC 733 ms
131,968 KB
testcase_21 AC 772 ms
131,968 KB
testcase_22 AC 728 ms
131,840 KB
testcase_23 AC 586 ms
132,280 KB
testcase_24 AC 577 ms
131,940 KB
testcase_25 AC 511 ms
129,152 KB
testcase_26 AC 551 ms
129,612 KB
testcase_27 AC 551 ms
129,880 KB
testcase_28 AC 1,177 ms
287,232 KB
testcase_29 AC 1,171 ms
281,604 KB
testcase_30 AC 1,038 ms
265,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
sys.setrecursionlimit(10**6)
input = sys.stdin.readline

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)
    
X = [[] for _ in range(N)]
vis = [False]*N
vis[0]=True
v = deque()
v.append(0)
parents = [-1]*N
sub = [-1]*N
def dfs(x):
    tmp = 1
    if len(e[x]) == 1 and x != 0:
        sub[x] = 1
        return 1
    for ix in e[x]:
        if ix == parents[x]:
            continue
        parents[ix] = x
        if sub[ix] != -1:
            tmp += sub[ix]
        else:
            tmp += dfs(ix)
    sub[x] = tmp
    return tmp
dfs(0)
while v:
    
    x = v.popleft()
    
    for ix in e[x]:
        
        if vis[ix]:
            continue
        
        X[x].append(sub[ix])
        vis[ix]=True
        v.append(ix)

for i in range(N):
    
    s2 = sum(j**2 for j in X[i])
    s = sum(j for j in X[i])
    ans = (s**2 - s2) + 2*s + 1
    print(ans)
# print(X)
0