結果

問題 No.1817 Reversed Edges
ユーザー customaddonecustomaddone
提出日時 2022-01-22 00:06:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 399 ms / 2,000 ms
コード長 1,783 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 184,596 KB
最終ジャッジ日時 2024-11-26 07:10:18
合計ジャッジ時間 8,104 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
61,440 KB
testcase_01 AC 51 ms
61,312 KB
testcase_02 AC 48 ms
61,184 KB
testcase_03 AC 48 ms
61,440 KB
testcase_04 AC 47 ms
61,824 KB
testcase_05 AC 47 ms
61,440 KB
testcase_06 AC 47 ms
61,184 KB
testcase_07 AC 329 ms
90,428 KB
testcase_08 AC 218 ms
84,052 KB
testcase_09 AC 347 ms
89,856 KB
testcase_10 AC 241 ms
84,548 KB
testcase_11 AC 283 ms
87,448 KB
testcase_12 AC 383 ms
92,100 KB
testcase_13 AC 384 ms
91,908 KB
testcase_14 AC 383 ms
92,056 KB
testcase_15 AC 399 ms
93,440 KB
testcase_16 AC 360 ms
92,092 KB
testcase_17 AC 381 ms
92,288 KB
testcase_18 AC 380 ms
91,980 KB
testcase_19 AC 368 ms
91,544 KB
testcase_20 AC 392 ms
91,972 KB
testcase_21 AC 379 ms
92,288 KB
testcase_22 AC 147 ms
91,844 KB
testcase_23 AC 150 ms
92,084 KB
testcase_24 AC 379 ms
184,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
from heapq import heapify, heappop, heappush
import math
from copy import deepcopy
from itertools import combinations, permutations, product, combinations_with_replacement
from bisect import bisect_left, bisect_right

import sys

def input():
    return sys.stdin.readline().rstrip()
def getN():
    return int(input())
def getNM():
    return map(int, input().split())
def getList():
    return list(map(int, input().split()))
def getListGraph():
    return list(map(lambda x:int(x) - 1, input().split()))
def getArray(intn):
    return [int(input()) for i in range(intn)]

mod = 10 ** 9 + 7
MOD = 998244353
sys.setrecursionlimit(10000000)
inf = float('inf')
eps = 10 ** (-15)
dy = [0, 1, 0, -1]
dx = [1, 0, -1, 0]

#############
# Main Code #
#############

"""
ある辺について
x1-1-2-x2
x2の方の頂点からスタートする場合はその辺は逆張りになる
x2の頂点にそれぞれ+1していけばいい
dfsする 子の方が大きかったら+1する
累積木dp
"""

N = getN()
E = [[] for i in range(N)]
for _ in range(N - 1):
    a, b = getNM()
    E[a - 1].append(b - 1)
    E[b - 1].append(a - 1)

fore = [0] * N
back = [0] * N

def dfs1(u, p):
    global fore, back
    for v in E[u]:
        if v != p:
            dfs1(v, u)
            # 帰りがけ
            if u > v:
                back[u] += 1
            back[u] += back[v]

dfs1(0, -1)

 # 親の分 - 自分の分 + (親 < 自分)
def dfs2(u, p):
    global back
    for v in E[u]:
        if v != p:
            back[v] = back[u] # 引き継ぐ
            # 行きがけ
            if u < v:
                back[v] += 1
            else:
                back[v] -= 1
            dfs2(v, u)

dfs2(0, -1)
for a in back:
    print(a)
0