結果

問題 No.1817 Reversed Edges
ユーザー roarisroaris
提出日時 2022-03-02 19:01:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 1,010 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 95,776 KB
最終ジャッジ日時 2024-07-16 10:19:35
合計ジャッジ時間 6,792 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,124 KB
testcase_01 AC 44 ms
53,932 KB
testcase_02 AC 45 ms
53,832 KB
testcase_03 AC 44 ms
54,988 KB
testcase_04 AC 45 ms
54,444 KB
testcase_05 AC 44 ms
55,148 KB
testcase_06 AC 44 ms
55,296 KB
testcase_07 AC 254 ms
89,752 KB
testcase_08 AC 156 ms
82,928 KB
testcase_09 AC 269 ms
89,292 KB
testcase_10 AC 166 ms
83,928 KB
testcase_11 AC 216 ms
86,288 KB
testcase_12 AC 311 ms
92,348 KB
testcase_13 AC 275 ms
92,340 KB
testcase_14 AC 320 ms
92,684 KB
testcase_15 AC 314 ms
92,572 KB
testcase_16 AC 317 ms
92,396 KB
testcase_17 AC 288 ms
92,336 KB
testcase_18 AC 269 ms
92,404 KB
testcase_19 AC 304 ms
92,480 KB
testcase_20 AC 313 ms
92,412 KB
testcase_21 AC 319 ms
92,272 KB
testcase_22 AC 156 ms
94,472 KB
testcase_23 AC 152 ms
95,776 KB
testcase_24 AC 144 ms
90,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

def bfs1():
    global all_add
    
    q = deque([0])
    dist = [-1]*N
    dist[0] = 0
    
    while q:
        v = q.popleft()
        
        for nv in G[v]:
            if dist[nv]==-1:
                if v<nv:
                    add[nv] += 1
                else:
                    all_add += 1
                    add[nv] -= 1
                
                dist[nv] = dist[v]+1
                q.append(nv)

def bfs2():
    q = deque([0])
    dist = [-1]*N
    dist[0] = 0
    
    while q:
        v = q.popleft()
        
        for nv in G[v]:
            if dist[nv]==-1:
                res[nv] = res[v]+add[nv]
                dist[nv] = dist[v]+1
                q.append(nv)

N = int(input())
G = [[] for _ in range(N)]

for _ in range(N-1):
    A, B = map(int, input().split())
    G[A-1].append(B-1)
    G[B-1].append(A-1)

all_add = 0
add = [0]*N
bfs1()
res = [0]*N
bfs2()

for v in range(N):
    print(res[v]+all_add)
0