結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,880 KB
testcase_01 AC 40 ms
53,504 KB
testcase_02 AC 41 ms
53,760 KB
testcase_03 AC 1,258 ms
169,216 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 AC 1,249 ms
168,960 KB
testcase_06 AC 46 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()
        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