結果

問題 No.1817 Reversed Edges
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-21 21:59:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 192,128 KB
最終ジャッジ日時 2024-05-04 12:53:28
合計ジャッジ時間 8,787 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 376 ms
89,840 KB
testcase_08 AC 242 ms
83,840 KB
testcase_09 AC 372 ms
88,576 KB
testcase_10 AC 263 ms
84,608 KB
testcase_11 AC 315 ms
86,528 KB
testcase_12 AC 417 ms
90,624 KB
testcase_13 AC 437 ms
90,628 KB
testcase_14 AC 463 ms
91,268 KB
testcase_15 AC 444 ms
90,880 KB
testcase_16 AC 411 ms
90,728 KB
testcase_17 AC 411 ms
90,752 KB
testcase_18 AC 417 ms
90,556 KB
testcase_19 AC 406 ms
91,264 KB
testcase_20 AC 406 ms
91,044 KB
testcase_21 AC 439 ms
90,880 KB
testcase_22 AC 206 ms
92,032 KB
testcase_23 AC 211 ms
92,032 KB
testcase_24 AC 422 ms
192,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(3*10**5)

n = int(input())
e = [[] for i in range(n)]
for i in range(n-1):
    a,b = [int(x)-1 for x in input().split()]
    e[a].append(b)
    e[b].append(a)


def dfs(x,p):
    count = 0
    for nex in e[x]:
        if nex == p:
            continue
        if nex < x:
            count += 1
        count += dfs(nex,x)

    return count

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

def dfs2(x,p):
    if x != 0:
        if p > x:
            ans[x] = ans[p]-1
        else:
            ans[x] = ans[p]+1

    for nex in e[x]:
        if nex == p:
            continue
        dfs2 (nex,x)
dfs2(0,-1)
for i in ans:
    print(i)
0