結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 41 ms
51,584 KB
testcase_07 AC 393 ms
89,728 KB
testcase_08 AC 253 ms
83,712 KB
testcase_09 AC 394 ms
89,344 KB
testcase_10 AC 270 ms
83,840 KB
testcase_11 AC 325 ms
86,144 KB
testcase_12 AC 445 ms
91,392 KB
testcase_13 AC 463 ms
91,136 KB
testcase_14 AC 445 ms
92,032 KB
testcase_15 AC 442 ms
92,416 KB
testcase_16 AC 439 ms
91,392 KB
testcase_17 AC 439 ms
91,264 KB
testcase_18 AC 446 ms
91,648 KB
testcase_19 AC 417 ms
91,264 KB
testcase_20 AC 443 ms
91,392 KB
testcase_21 AC 429 ms
91,392 KB
testcase_22 AC 193 ms
91,208 KB
testcase_23 AC 193 ms
91,776 KB
testcase_24 AC 427 ms
192,128 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