結果

問題 No.1098 LCAs
ユーザー neterukunneterukun
提出日時 2020-06-26 22:46:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 863 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 167,076 KB
最終ジャッジ日時 2024-07-04 22:44:57
合計ジャッジ時間 8,975 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
info = [list(map(int, input().split())) for i in range(n - 1)]


root = 0
graph = [[] for i in range(n)]
for a, b in info:
    a -= 1
    b -= 1
    graph[a].append(b)
    graph[b].append(a)


stack = [root]
tp_sort = [root]
visited = [False] * n
visited[root] = True
while stack:
    v = stack.pop()
    for nxt_v in graph[v]:
        if visited[nxt_v]:
            continue
        visited[nxt_v] = True
        stack.append(nxt_v)
        tp_sort.append(nxt_v)

print(tp_sort)

dp = [-1] * n
dp_cnt = [0] * n
while tp_sort:
    v = tp_sort.pop()
    dp_sum = 0
    dp[v] = 0
    for chi_v in graph[v]:
        if dp[chi_v] == -1:
            continue
        dp[v] += dp_sum * dp_cnt[chi_v] * 2
        dp_cnt[v] += dp_cnt[chi_v] 
        dp_sum += dp_cnt[chi_v]
    dp[v] += dp_sum * 2 + 1
    dp_cnt[v] += 1

for val in dp:
    print(val)   
0