結果

問題 No.1817 Reversed Edges
ユーザー ShirotsumeShirotsume
提出日時 2022-01-21 23:09:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 892 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 96,828 KB
最終ジャッジ日時 2024-11-26 02:37:19
合計ジャッジ時間 6,529 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,504 KB
testcase_01 AC 44 ms
53,504 KB
testcase_02 AC 43 ms
53,504 KB
testcase_03 AC 44 ms
53,632 KB
testcase_04 AC 45 ms
53,760 KB
testcase_05 AC 44 ms
53,760 KB
testcase_06 AC 44 ms
53,760 KB
testcase_07 AC 267 ms
93,272 KB
testcase_08 AC 177 ms
85,248 KB
testcase_09 AC 257 ms
93,124 KB
testcase_10 AC 182 ms
86,016 KB
testcase_11 AC 210 ms
88,480 KB
testcase_12 AC 287 ms
95,904 KB
testcase_13 AC 305 ms
95,780 KB
testcase_14 AC 305 ms
96,304 KB
testcase_15 AC 296 ms
95,904 KB
testcase_16 AC 298 ms
95,920 KB
testcase_17 AC 285 ms
96,172 KB
testcase_18 AC 286 ms
96,048 KB
testcase_19 AC 317 ms
95,912 KB
testcase_20 AC 303 ms
95,784 KB
testcase_21 AC 297 ms
95,780 KB
testcase_22 AC 204 ms
96,828 KB
testcase_23 AC 205 ms
96,748 KB
testcase_24 AC 191 ms
95,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
graph = [[] for _ in range(n)]
edge = []
for _ in range(n - 1):
    a, b = map(int,input().split())
    a -= 1; b -= 1
    edge.append((a, b))
    graph[a].append(b)
    graph[b].append(a)

value = [0] * n
visit = [-1] * n
visit[0] = 0
from collections import deque
q = deque()
q.append(0)
while q:
    now = q.popleft()
    for to in graph[now]:
        if visit[to] < 0:
            visit[to] = visit[now] + 1
            q.append(to)
depth = visit
for a, b in edge:
    if a > b: a, b = b, a
    #a < bを仮定
    if depth[a] > depth[b]:
        value[a] -= 1
        value[0] += 1
    else:
        value[b] += 1
        
        
visit = [False] * n
visit[0] = True
q = deque()
q.append(0)
while q:
    now = q.pop()
    for to in graph[now]:
        if depth[to] > depth[now]:
            value[to] += value[now]
            q.append(to)

for v in value:
    print(v)
0