結果

問題 No.1817 Reversed Edges
ユーザー tamatotamato
提出日時 2022-01-21 21:30:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,213 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 110,080 KB
最終ジャッジ日時 2024-05-04 12:01:33
合計ジャッジ時間 5,361 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,016 KB
testcase_01 AC 38 ms
53,888 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 38 ms
53,888 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 141 ms
108,760 KB
testcase_23 AC 144 ms
110,080 KB
testcase_24 AC 145 ms
109,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from collections import deque
    input = sys.stdin.readline

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

    que = deque()
    que.append(1)
    seen = [-1] * (N+1)
    seen[1] = 0
    par = [0] * (N+1)
    child = [[] for _ in range(N+1)]
    seq = []
    while que:
        v = que.popleft()
        seq.append(v)
        for u in adj[v]:
            if seen[u] == -1:
                seen[u] = seen[v] + 1
                par[u] = v
                child[v].append(u)
                que.append(u)

    imos0 = [0] * (N+1)
    imos1 = [0] * (N+1)
    for v in seq:
        for u in child[v]:
            if v < u:
                imos0[u] += 1
            else:
                imos1[u] += 1
    ans0 = [0] * (N+1)
    ans1 = [N] * (N+1)
    for v in seq:
        if v != 1:
            ans0[v] = ans0[par[v]]
            ans1[v] = ans1[par[v]]
        ans0[v] += imos0[v]
        ans1[v] -= imos1[v]
    for i in range(1, N+1):
        print(ans0[i] + ans1[i] - N)


if __name__ == '__main__':
    main()
0