結果

問題 No.1817 Reversed Edges
ユーザー tassei903tassei903
提出日時 2022-01-21 22:01:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 883 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 109,184 KB
最終ジャッジ日時 2024-05-04 12:57:23
合計ジャッジ時間 5,215 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,712 KB
testcase_01 AC 32 ms
51,968 KB
testcase_02 AC 32 ms
52,352 KB
testcase_03 AC 33 ms
52,352 KB
testcase_04 AC 33 ms
52,096 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 34 ms
51,840 KB
testcase_07 AC 169 ms
98,048 KB
testcase_08 AC 114 ms
86,220 KB
testcase_09 AC 179 ms
97,280 KB
testcase_10 AC 124 ms
87,296 KB
testcase_11 AC 148 ms
90,752 KB
testcase_12 AC 202 ms
101,376 KB
testcase_13 AC 207 ms
101,488 KB
testcase_14 AC 193 ms
100,992 KB
testcase_15 AC 195 ms
101,120 KB
testcase_16 AC 210 ms
100,992 KB
testcase_17 AC 221 ms
101,248 KB
testcase_18 AC 202 ms
101,504 KB
testcase_19 AC 200 ms
100,864 KB
testcase_20 AC 199 ms
100,992 KB
testcase_21 AC 199 ms
100,992 KB
testcase_22 AC 145 ms
109,184 KB
testcase_23 AC 134 ms
106,240 KB
testcase_24 AC 131 ms
98,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n = ni()
g = [[] for i in range(n)]
for i in range(n-1):
    a,b=na()
    a-=1
    b-=1
    g[a].append(b)
    g[b].append(a)

dq = [0]
dp = [0]*n
seen = [0]*n
et = []
oya = [-1]*n
while dq:
    v = dq.pop()
    seen[v] = 1
    et.append(v)
    for w in g[v]:
        if seen[w]^1:
            dq.append(w)
            oya[w] = v
            if v>w:
                dp[0] += 1

for i in et[1:]:
    if i>oya[i]:
        dp[i] = dp[oya[i]]+1
    else:
        dp[i] = dp[oya[i]]-1
print(*dp,sep="\n")
0