結果

問題 No.1817 Reversed Edges
ユーザー tktk_snsntktk_snsn
提出日時 2022-05-13 12:39:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 611 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 35,332 KB
最終ジャッジ日時 2024-07-21 10:17:35
合計ジャッジ時間 11,584 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 33 ms
10,624 KB
testcase_05 AC 37 ms
10,496 KB
testcase_06 AC 31 ms
10,496 KB
testcase_07 AC 528 ms
32,276 KB
testcase_08 AC 237 ms
21,104 KB
testcase_09 AC 484 ms
30,968 KB
testcase_10 AC 272 ms
22,592 KB
testcase_11 AC 371 ms
25,988 KB
testcase_12 AC 594 ms
35,208 KB
testcase_13 AC 574 ms
35,204 KB
testcase_14 AC 595 ms
35,076 KB
testcase_15 AC 580 ms
35,080 KB
testcase_16 AC 573 ms
35,152 KB
testcase_17 AC 582 ms
35,084 KB
testcase_18 AC 586 ms
35,212 KB
testcase_19 AC 595 ms
35,080 KB
testcase_20 AC 585 ms
35,332 KB
testcase_21 AC 611 ms
35,212 KB
testcase_22 AC 381 ms
29,688 KB
testcase_23 AC 381 ms
29,696 KB
testcase_24 AC 403 ms
34,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)


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

par = [-1] * N
topo = []
que = [0]
while que:
    s = que.pop()
    topo.append(s)
    for t in G[s]:
        if t == par[s]:
            continue
        par[t] = s
        que.append(t)


dp = [0] * N
for s in topo[::-1][:-1]:
    p = par[s]
    dp[p] += dp[s]
    if p > s:
        dp[p] += 1

for s in topo[1:]:
    p = par[s]
    dp[s] = dp[p]
    if p > s:
        dp[s] -= 1
    else:
        dp[s] += 1

print(*dp, sep="\n")
0