結果

問題 No.1817 Reversed Edges
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-21 21:35:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 1,010 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 111,792 KB
最終ジャッジ日時 2024-05-04 12:09:06
合計ジャッジ時間 6,240 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,352 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 242 ms
104,216 KB
testcase_08 AC 158 ms
89,664 KB
testcase_09 AC 245 ms
101,092 KB
testcase_10 AC 166 ms
91,428 KB
testcase_11 AC 207 ms
93,816 KB
testcase_12 AC 285 ms
108,740 KB
testcase_13 AC 280 ms
108,596 KB
testcase_14 AC 271 ms
109,004 KB
testcase_15 AC 282 ms
108,612 KB
testcase_16 AC 266 ms
108,864 KB
testcase_17 AC 278 ms
108,484 KB
testcase_18 AC 286 ms
108,872 KB
testcase_19 AC 283 ms
108,368 KB
testcase_20 AC 274 ms
109,016 KB
testcase_21 AC 268 ms
108,740 KB
testcase_22 AC 156 ms
109,372 KB
testcase_23 AC 165 ms
111,616 KB
testcase_24 AC 164 ms
111,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n = int(input())
edge = [[] for i in range(n)]
for i in range(n-1):
    u, v = map(int, input().split())
    u, v = u-1, v-1
    edge[u].append(v)
    edge[v].append(u)

s = []
s.append(0)
par = [-1]*n
ch = [[] for i in range(n)]
order = []
while s:
    v = s.pop()
    order.append(v)
    for u in edge[v]:
        if par[v] != u:
            s.append(u)
            ch[v].append(u)
            par[u] = v

order.reverse()
#print(order)
dp1 = [0]*n
for v in order:
    if par[v] != -1:
        dp1[par[v]] += dp1[v]
        if par[v] > v:
            dp1[par[v]] += 1
#print(dp1)
dp2 = [0]*n
for v in range(n):
    dp2[v] = dp1[v]
order.reverse()
for v in order:
    temp = dp2[v]
    for u in ch[v]:
        if u > v:
            temp -= dp1[u]
            dp2[u] += temp+1
            temp += dp1[u]
        else:
            temp -= dp1[u]+1
            dp2[u] += temp
            temp += dp1[u]+1
print(*dp2, sep='\n')
0