結果

問題 No.2888 Mamehinata
ユーザー rlangevinrlangevin
提出日時 2024-09-30 08:58:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 121,216 KB
最終ジャッジ日時 2024-09-30 08:59:03
合計ジャッジ時間 14,479 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,504 KB
testcase_01 AC 44 ms
53,504 KB
testcase_02 AC 49 ms
53,504 KB
testcase_03 AC 44 ms
53,632 KB
testcase_04 AC 45 ms
53,888 KB
testcase_05 AC 44 ms
53,888 KB
testcase_06 AC 50 ms
53,888 KB
testcase_07 AC 44 ms
53,504 KB
testcase_08 AC 52 ms
54,016 KB
testcase_09 AC 46 ms
54,144 KB
testcase_10 AC 45 ms
53,504 KB
testcase_11 AC 44 ms
53,888 KB
testcase_12 AC 45 ms
53,760 KB
testcase_13 AC 122 ms
78,720 KB
testcase_14 AC 120 ms
84,096 KB
testcase_15 AC 209 ms
90,112 KB
testcase_16 AC 315 ms
96,512 KB
testcase_17 AC 121 ms
84,096 KB
testcase_18 AC 176 ms
83,968 KB
testcase_19 AC 353 ms
97,920 KB
testcase_20 AC 307 ms
93,184 KB
testcase_21 AC 337 ms
92,800 KB
testcase_22 AC 146 ms
88,064 KB
testcase_23 AC 184 ms
92,160 KB
testcase_24 AC 311 ms
99,840 KB
testcase_25 AC 230 ms
97,920 KB
testcase_26 AC 253 ms
97,280 KB
testcase_27 AC 159 ms
92,544 KB
testcase_28 AC 118 ms
79,744 KB
testcase_29 AC 170 ms
85,760 KB
testcase_30 AC 356 ms
99,840 KB
testcase_31 AC 300 ms
97,024 KB
testcase_32 AC 229 ms
90,752 KB
testcase_33 AC 277 ms
94,976 KB
testcase_34 AC 247 ms
91,392 KB
testcase_35 AC 220 ms
89,856 KB
testcase_36 AC 386 ms
100,992 KB
testcase_37 AC 402 ms
101,632 KB
testcase_38 AC 198 ms
89,216 KB
testcase_39 AC 397 ms
119,296 KB
testcase_40 AC 462 ms
121,216 KB
testcase_41 AC 161 ms
83,712 KB
testcase_42 AC 384 ms
114,140 KB
testcase_43 AC 243 ms
99,840 KB
testcase_44 AC 265 ms
101,932 KB
testcase_45 AC 327 ms
107,612 KB
testcase_46 AC 104 ms
80,128 KB
testcase_47 AC 272 ms
101,380 KB
testcase_48 AC 251 ms
95,272 KB
testcase_49 AC 83 ms
76,544 KB
testcase_50 AC 118 ms
81,920 KB
testcase_51 AC 69 ms
65,664 KB
testcase_52 AC 54 ms
63,744 KB
testcase_53 AC 75 ms
76,160 KB
testcase_54 AC 42 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import deque
def bfs(G, s):
    Q = deque([s])
    N = len(G)
    dist = [-1] * N
    par = [-1] * N
    dist[s] = 0
    while Q:
        u = Q.popleft()
        for v in G[u]:
            if dist[v] != -1:
                continue
            dist[v] = dist[u] + 1
            par[v] = u
            Q.append(v)

    return dist


N, M = map(int, input().split())
G = [[] for i in range(N)]
for _ in range(M):
    u, v = map(int, input().split())
    u, v = u - 1, v - 1
    G[u].append(v)
    G[v].append(u)
    
if len(G[0]) == 0:
    for i in range(N):
        print(0)
    exit()
    
ans = [1, 0]
dist = bfs(G, 0)
from collections import *
C = Counter(dist)
for i in range(1, N + 1):
    ans[i % 2] += C[i]
    print(ans[i % 2])
0