結果

問題 No.1817 Reversed Edges
ユーザー ああいいああいい
提出日時 2022-01-21 22:26:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 396 ms / 2,000 ms
コード長 632 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 192,256 KB
最終ジャッジ日時 2024-05-04 13:34:40
合計ジャッジ時間 7,937 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 366 ms
89,600 KB
testcase_08 AC 246 ms
83,456 KB
testcase_09 AC 351 ms
89,088 KB
testcase_10 AC 255 ms
83,584 KB
testcase_11 AC 294 ms
86,272 KB
testcase_12 AC 386 ms
91,008 KB
testcase_13 AC 384 ms
91,264 KB
testcase_14 AC 369 ms
92,288 KB
testcase_15 AC 390 ms
91,520 KB
testcase_16 AC 390 ms
91,520 KB
testcase_17 AC 392 ms
91,392 KB
testcase_18 AC 396 ms
91,520 KB
testcase_19 AC 364 ms
90,880 KB
testcase_20 AC 393 ms
91,648 KB
testcase_21 AC 389 ms
91,648 KB
testcase_22 AC 182 ms
91,460 KB
testcase_23 AC 177 ms
91,904 KB
testcase_24 AC 393 ms
192,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import sys
sys.setrecursionlimit(10 ** 8)
def dfs(now = 1,parent = 0):
    count = 0
    for v in G[now]:
        if v == parent:continue
        if now > v:count += 1
        count += dfs(v,now)
    return count
ans = [0] * (N + 1)
ans[1] = dfs()
def dfs2(now = 1,parent = 0):
    for v in G[now]:
        if v == parent:continue
        if now > v:
            ans[v] = ans[now] - 1
        else:
            ans[v] = ans[now] + 1
        dfs2(v,now)
dfs2()
for a in ans[1:]:
    print(a)
0