結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,880 KB
testcase_01 AC 41 ms
470,008 KB
testcase_02 AC 48 ms
59,136 KB
testcase_03 AC 1,279 ms
371,200 KB
testcase_04 AC 42 ms
58,880 KB
testcase_05 AC 1,313 ms
489,076 KB
testcase_06 AC 46 ms
58,880 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 573 ms
169,088 KB
testcase_15 AC 44 ms
53,760 KB
testcase_16 AC 45 ms
54,144 KB
testcase_17 AC 44 ms
53,504 KB
testcase_18 AC 44 ms
54,272 KB
testcase_19 AC 43 ms
53,888 KB
testcase_20 AC 131 ms
79,488 KB
testcase_21 AC 128 ms
80,000 KB
testcase_22 AC 109 ms
77,696 KB
testcase_23 AC 107 ms
77,312 KB
testcase_24 AC 126 ms
79,360 KB
testcase_25 AC 376 ms
101,248 KB
testcase_26 AC 835 ms
134,528 KB
testcase_27 AC 575 ms
118,656 KB
testcase_28 AC 1,209 ms
162,816 KB
testcase_29 AC 1,087 ms
152,320 KB
testcase_30 AC 766 ms
132,480 KB
testcase_31 AC 498 ms
113,536 KB
testcase_32 AC 763 ms
132,352 KB
testcase_33 AC 649 ms
125,696 KB
testcase_34 AC 246 ms
454,324 KB
権限があれば一括ダウンロードができます

ソースコード

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