結果

問題 No.1098 LCAs
ユーザー roarisroaris
提出日時 2020-06-27 06:31:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,456 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 98,176 KB
最終ジャッジ日時 2024-07-05 08:48:56
合計ジャッジ時間 15,905 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 33 ms
10,752 KB
testcase_15 AC 33 ms
10,752 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 AC 32 ms
10,752 KB
testcase_18 AC 997 ms
46,080 KB
testcase_19 AC 1,005 ms
46,208 KB
testcase_20 AC 994 ms
45,952 KB
testcase_21 AC 997 ms
46,208 KB
testcase_22 AC 986 ms
46,080 KB
testcase_23 AC 836 ms
42,368 KB
testcase_24 AC 838 ms
42,368 KB
testcase_25 AC 786 ms
41,984 KB
testcase_26 AC 861 ms
48,384 KB
testcase_27 AC 866 ms
48,384 KB
testcase_28 AC 1,455 ms
93,568 KB
testcase_29 AC 1,432 ms
98,176 KB
testcase_30 AC 1,456 ms
94,208 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