結果

問題 No.2427 Tree Distance Two
ユーザー CecilCecil
提出日時 2023-08-18 22:31:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 695 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 369,152 KB
最終ジャッジ日時 2024-11-28 08:27:18
合計ジャッジ時間 63,801 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
58,624 KB
testcase_01 AC 51 ms
348,208 KB
testcase_02 AC 47 ms
58,624 KB
testcase_03 TLE -
testcase_04 AC 47 ms
58,240 KB
testcase_05 TLE -
testcase_06 AC 47 ms
58,752 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 48 ms
58,624 KB
testcase_16 AC 50 ms
313,984 KB
testcase_17 AC 48 ms
59,008 KB
testcase_18 AC 59 ms
335,776 KB
testcase_19 AC 46 ms
58,496 KB
testcase_20 AC 211 ms
339,960 KB
testcase_21 AC 243 ms
86,144 KB
testcase_22 AC 122 ms
369,152 KB
testcase_23 AC 114 ms
81,920 KB
testcase_24 AC 208 ms
367,168 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from collections import defaultdict as dd
n = int(input())

G = [ [] for _ in range(n+1) ]

for _ in range(n-1):
    u,v = map(int, input().split())
    G[u].append(v)
    G[v].append(u)

def bfs(start):
    dist = [-1] * (n+1)
    dist[start] = 0
    que = deque()
    que.append(start)
    cnt = 0
    while que:
        v = que.popleft()
        for v2 in G[v]:
            if dist[v2] != -1:
                continue
            dist[v2] = dist[v] + 1
            if dist[v2] == 2:
                cnt += 1
            if dist[v2] > 2:
                return cnt
            que.append(v2)
    return cnt

for i in range(1, n+1):
    ans = bfs(i)
    print(ans)
0