結果

問題 No.1098 LCAs
ユーザー titiatitia
提出日時 2020-06-26 23:15:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 679 ms / 2,000 ms
コード長 727 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 153,272 KB
最終ジャッジ日時 2024-07-04 23:51:27
合計ジャッジ時間 10,628 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 38 ms
51,968 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 78 ms
73,856 KB
testcase_14 AC 76 ms
72,192 KB
testcase_15 AC 80 ms
71,040 KB
testcase_16 AC 80 ms
71,168 KB
testcase_17 AC 74 ms
72,064 KB
testcase_18 AC 650 ms
119,296 KB
testcase_19 AC 679 ms
119,424 KB
testcase_20 AC 643 ms
119,424 KB
testcase_21 AC 632 ms
119,552 KB
testcase_22 AC 629 ms
119,296 KB
testcase_23 AC 546 ms
148,716 KB
testcase_24 AC 569 ms
148,728 KB
testcase_25 AC 472 ms
153,272 KB
testcase_26 AC 517 ms
139,148 KB
testcase_27 AC 498 ms
139,260 KB
testcase_28 AC 651 ms
118,272 KB
testcase_29 AC 643 ms
118,144 KB
testcase_30 AC 650 ms
118,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
E=[[] for i in range(N+1)]


for i in range(N-1):
    x,y=map(int,input().split())
    E[x].append(y)
    E[y].append(x)

Q=[1]
TOP_SORT=[]
USE=[0]*(N+1)
USE[1]=1
P=[-1]*(N+1)
while Q:
    x=Q.pop()
    TOP_SORT.append(x)
    for to in E[x]:
        if USE[to]==0:
            USE[to]=1
            Q.append(to)
            P[to]=x

Children=[1]*(N+1)

for t in TOP_SORT[::-1]:

    if t!=1 and len(E[t])==1:
        Children[t]=1

    if t!=1:
        Children[P[t]]+=Children[t]

for i in range(1,N+1):
    ANS=Children[i]*2-1

    X=[]
    for to in E[i]:
        if to==P[i]:
            continue
        X.append(Children[to])

    S=sum(X)

    for x in X:
        ANS+=x*(S-x)

    print(ANS)

    
    

0