結果

問題 No.2427 Tree Distance Two
ユーザー loop0919loop0919
提出日時 2023-08-18 22:06:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 675 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 422,012 KB
最終ジャッジ日時 2024-05-06 04:10:10
合計ジャッジ時間 7,219 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,264 KB
testcase_01 AC 38 ms
54,016 KB
testcase_02 AC 40 ms
53,888 KB
testcase_03 AC 1,288 ms
169,244 KB
testcase_04 AC 39 ms
53,504 KB
testcase_05 AC 1,284 ms
169,224 KB
testcase_06 AC 37 ms
53,376 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N = int(input())

tree = [set() for _ in range(N)]

for i in range(N-1):
    a, b = map(lambda x: int(x) - 1, input().split())
    tree[a].add(b)
    tree[b].add(a)

def bfs(a):
    visited = set([a])
    que = deque([(a, 0)])
    cnt = 0
    
    while que:
        now, dist = que.popleft()
        if dist >= 2:
            break
        
        for next in tree[now]:
            if next in visited:
                continue
            visited.add(next)
            
            if dist+1 == 2:
                cnt += 1
            else:
                que.append((next, dist+1))
    
    return cnt


for i in range(N):
    print(bfs(i))
0