結果

問題 No.1817 Reversed Edges
ユーザー U SU S
提出日時 2022-01-21 21:54:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 396 ms / 2,000 ms
コード長 1,501 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 119,808 KB
最終ジャッジ日時 2024-11-25 23:46:40
合計ジャッジ時間 8,088 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
60,800 KB
testcase_01 AC 54 ms
61,056 KB
testcase_02 AC 54 ms
61,172 KB
testcase_03 AC 55 ms
60,800 KB
testcase_04 AC 55 ms
60,544 KB
testcase_05 AC 58 ms
60,928 KB
testcase_06 AC 55 ms
61,236 KB
testcase_07 AC 355 ms
114,956 KB
testcase_08 AC 209 ms
93,312 KB
testcase_09 AC 361 ms
112,048 KB
testcase_10 AC 219 ms
92,236 KB
testcase_11 AC 259 ms
104,064 KB
testcase_12 AC 373 ms
107,776 KB
testcase_13 AC 374 ms
108,928 KB
testcase_14 AC 382 ms
107,648 KB
testcase_15 AC 389 ms
107,972 KB
testcase_16 AC 396 ms
107,264 KB
testcase_17 AC 355 ms
108,544 KB
testcase_18 AC 373 ms
108,928 KB
testcase_19 AC 382 ms
107,776 KB
testcase_20 AC 385 ms
108,032 KB
testcase_21 AC 392 ms
107,564 KB
testcase_22 AC 230 ms
119,308 KB
testcase_23 AC 231 ms
119,808 KB
testcase_24 AC 224 ms
118,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys
# input = sys.stdin.readline
def mp():return map(int,input().split())
def lmp():return list(map(int,input().split()))
def mps(A):return [tuple(map(int, input().split())) for _ in range(A)]
def stoi(LIST):return list(map(int,LIST))
def itos(LIST):return list(map(str,LIST))
def bitA(X,A):return X & 1<<A == 1<<A
import math
import bisect
import heapq
import time
from copy import copy as cc
from copy import deepcopy as dc
from itertools import accumulate, product
from collections import Counter, defaultdict, deque
def ceil(U,V):return (U+V-1)//V
def modf1(N,MOD):return (N-1)%MOD+1
inf = int(1e18+20)
mod = int(1e9+7)

n = int(input())
edge = [[] for i in range(n)]
for i in range(n-1):
    a,b = mp()
    a -= 1
    b -= 1
    edge[a].append(b)
    edge[b].append(a)
ans = [0]*n
q = deque([0])
used = set()
used.add(0)
base = 0
while q:
    here = q.popleft()
    for i in edge[here]:
        if i not in used:
            q.append(i)
            used.add(i)
            if i < here:base += 1
ans[0] = base
q = deque([0])
used = set()
used.add(0)
while q:
    here = q.popleft()
    for i in edge[here]:
        if i not in used:
            q.append(i)
            used.add(i)
            if i > here:ans[i] = ans[here] + 1
            else:ans[i] = ans[here] - 1
for i in ans:
    print(i)



# n = int(input())
# a = lmp()
# a.sort(reverse=True)
# ans = a[0]

# for i in range(1,n):
#     if i % 2 == 1:
#         ans *= a[i]
#     else:
#         ans = ceil(ans, a[i])
# print(ans)
0