結果

問題 No.1098 LCAs
ユーザー roarisroaris
提出日時 2020-06-27 06:31:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,944 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 433,112 KB
最終ジャッジ日時 2024-07-05 08:48:34
合計ジャッジ時間 11,969 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
51,456 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 40 ms
51,712 KB
testcase_13 AC 65 ms
66,048 KB
testcase_14 AC 61 ms
65,024 KB
testcase_15 AC 64 ms
65,920 KB
testcase_16 AC 62 ms
65,792 KB
testcase_17 AC 65 ms
66,176 KB
testcase_18 AC 490 ms
101,760 KB
testcase_19 AC 489 ms
101,248 KB
testcase_20 AC 490 ms
101,860 KB
testcase_21 AC 479 ms
101,888 KB
testcase_22 AC 489 ms
101,480 KB
testcase_23 AC 371 ms
114,944 KB
testcase_24 AC 362 ms
114,688 KB
testcase_25 AC 311 ms
114,688 KB
testcase_26 AC 327 ms
115,968 KB
testcase_27 AC 311 ms
113,920 KB
testcase_28 AC 1,534 ms
391,936 KB
testcase_29 AC 1,389 ms
391,296 KB
testcase_30 AC 1,944 ms
433,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(2*10**5+100)

def dfs(v, pv):
    l = []
    
    for nv in G[v]:
        if nv==pv:
            continue
        
        l.append(dfs(nv, v))
    
    s = sum(l)
    
    for li in l:
        ans[v] += li*(s-li)
    
    for li in l:
        ans[v] += 2*li
    
    return s+1

N = int(input())
G = [[] for _ in range(N)]

for _ in range(N-1):
    v, w = map(int, input().split())
    G[v-1].append(w-1)
    G[w-1].append(v-1)

ans = [1]*N
dfs(0, -1)

for ans_i in ans:
    print(ans_i)
0