結果

問題 No.2427 Tree Distance Two
ユーザー CecilCecil
提出日時 2023-08-18 22:29:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 695 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 80,576 KB
最終ジャッジ日時 2024-11-28 08:20:02
合計ジャッジ時間 62,959 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
15,872 KB
testcase_01 AC 35 ms
74,004 KB
testcase_02 AC 31 ms
15,872 KB
testcase_03 TLE -
testcase_04 AC 32 ms
16,000 KB
testcase_05 TLE -
testcase_06 AC 31 ms
16,000 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 32 ms
16,000 KB
testcase_16 AC 32 ms
35,148 KB
testcase_17 AC 32 ms
15,872 KB
testcase_18 AC 32 ms
54,084 KB
testcase_19 AC 32 ms
15,872 KB
testcase_20 AC 159 ms
46,872 KB
testcase_21 AC 200 ms
17,792 KB
testcase_22 AC 55 ms
70,856 KB
testcase_23 AC 43 ms
16,128 KB
testcase_24 AC 158 ms
65,972 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