結果

問題 No.1817 Reversed Edges
ユーザー ShirotsumeShirotsume
提出日時 2022-01-21 23:09:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 892 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 97,084 KB
最終ジャッジ日時 2024-05-04 14:33:05
合計ジャッジ時間 6,245 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
55,260 KB
testcase_01 AC 51 ms
54,856 KB
testcase_02 AC 35 ms
54,132 KB
testcase_03 AC 39 ms
53,944 KB
testcase_04 AC 34 ms
54,040 KB
testcase_05 AC 36 ms
54,508 KB
testcase_06 AC 35 ms
55,064 KB
testcase_07 AC 246 ms
93,404 KB
testcase_08 AC 147 ms
85,412 KB
testcase_09 AC 230 ms
93,272 KB
testcase_10 AC 156 ms
86,244 KB
testcase_11 AC 177 ms
88,492 KB
testcase_12 AC 247 ms
95,916 KB
testcase_13 AC 248 ms
95,940 KB
testcase_14 AC 254 ms
96,300 KB
testcase_15 AC 260 ms
96,052 KB
testcase_16 AC 249 ms
95,924 KB
testcase_17 AC 262 ms
96,680 KB
testcase_18 AC 263 ms
96,048 KB
testcase_19 AC 251 ms
96,284 KB
testcase_20 AC 255 ms
96,304 KB
testcase_21 AC 283 ms
95,904 KB
testcase_22 AC 187 ms
97,084 KB
testcase_23 AC 189 ms
96,744 KB
testcase_24 AC 173 ms
95,284 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