結果

問題 No.1098 LCAs
ユーザー 👑 KazunKazun
提出日時 2020-06-26 23:26:25
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,012 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 226,572 KB
最終ジャッジ日時 2024-07-05 00:11:12
合計ジャッジ時間 15,794 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,400 KB
testcase_01 AC 52 ms
55,168 KB
testcase_02 AC 52 ms
54,400 KB
testcase_03 AC 47 ms
54,656 KB
testcase_04 AC 48 ms
54,784 KB
testcase_05 AC 47 ms
54,656 KB
testcase_06 AC 50 ms
54,656 KB
testcase_07 AC 47 ms
55,296 KB
testcase_08 AC 48 ms
55,040 KB
testcase_09 AC 49 ms
54,656 KB
testcase_10 AC 48 ms
55,040 KB
testcase_11 AC 47 ms
55,040 KB
testcase_12 AC 47 ms
54,656 KB
testcase_13 AC 105 ms
77,440 KB
testcase_14 AC 102 ms
76,928 KB
testcase_15 AC 109 ms
77,696 KB
testcase_16 AC 107 ms
77,184 KB
testcase_17 AC 107 ms
77,440 KB
testcase_18 AC 1,575 ms
226,436 KB
testcase_19 AC 1,490 ms
223,756 KB
testcase_20 AC 1,462 ms
223,244 KB
testcase_21 AC 1,509 ms
226,572 KB
testcase_22 AC 1,505 ms
223,244 KB
testcase_23 AC 714 ms
170,176 KB
testcase_24 AC 705 ms
175,176 KB
testcase_25 AC 557 ms
165,440 KB
testcase_26 AC 687 ms
222,396 KB
testcase_27 AC 659 ms
211,384 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache
from collections import deque

N=int(input())
E={i:[] for i in range(1,N+1)}
for _ in range(N-1):
    u,v=map(int,input().split())
    E[u].append(v)
    E[v].append(u)

T=[None]*(N+1)
U=[False]*(N+1)
F=[[] for _ in range(N+1)]
Q=deque()
T[1]=0

Q.append(1)
while Q:
    v=Q.popleft()
    G=True
    for u in E[v]:
        if T[u]==None:
            Q.append(u)
            F[v].append(u)
            T[u]=1
            G=False
    if G:
        U[v]=True

@lru_cache(maxsize=2*10**6)
def f(N):
    if U[N]:
        return 1
    else:
        T=1
        for v in F[N]:
            T+=f(v)
        return T

def h(L):
    S=0
    for p in L:
        S+=p*p

    T=sum(L)
    return T*T-S
        
@lru_cache(maxsize=2*10**6)
def g(N):
    if U[N]:
        return 1
    else:
        C=[]
        for v in F[N]:
            C.append(f(v))
        return h(C)+2*sum(C)+1


Z=[0]*(N+1)
for i in range(2,N+1):
    Z[i]=g(i)
Z[1]=N*N-sum(Z[2:])

for i in range(1,N+1):
    print(Z[i])
0