結果

問題 No.2888 Mamehinata
ユーザー flippergoflippergo
提出日時 2024-11-15 08:21:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 598 ms / 2,000 ms
コード長 901 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 124,820 KB
最終ジャッジ日時 2024-11-15 08:22:21
合計ジャッジ時間 17,873 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 42 ms
54,016 KB
testcase_03 AC 43 ms
53,632 KB
testcase_04 AC 44 ms
54,016 KB
testcase_05 AC 44 ms
54,144 KB
testcase_06 AC 44 ms
53,760 KB
testcase_07 AC 44 ms
53,888 KB
testcase_08 AC 44 ms
53,888 KB
testcase_09 AC 43 ms
53,632 KB
testcase_10 AC 43 ms
54,080 KB
testcase_11 AC 44 ms
53,632 KB
testcase_12 AC 43 ms
54,016 KB
testcase_13 AC 171 ms
79,708 KB
testcase_14 AC 147 ms
92,416 KB
testcase_15 AC 344 ms
96,592 KB
testcase_16 AC 462 ms
107,864 KB
testcase_17 AC 142 ms
101,796 KB
testcase_18 AC 238 ms
84,736 KB
testcase_19 AC 495 ms
104,668 KB
testcase_20 AC 432 ms
99,080 KB
testcase_21 AC 442 ms
98,928 KB
testcase_22 AC 195 ms
104,848 KB
testcase_23 AC 244 ms
114,620 KB
testcase_24 AC 441 ms
114,304 KB
testcase_25 AC 319 ms
114,404 KB
testcase_26 AC 349 ms
114,432 KB
testcase_27 AC 208 ms
114,688 KB
testcase_28 AC 163 ms
81,748 KB
testcase_29 AC 230 ms
89,088 KB
testcase_30 AC 492 ms
110,720 KB
testcase_31 AC 460 ms
104,192 KB
testcase_32 AC 310 ms
96,308 KB
testcase_33 AC 408 ms
101,504 KB
testcase_34 AC 369 ms
96,624 KB
testcase_35 AC 306 ms
94,236 KB
testcase_36 AC 555 ms
114,324 KB
testcase_37 AC 586 ms
114,560 KB
testcase_38 AC 230 ms
90,704 KB
testcase_39 AC 493 ms
121,332 KB
testcase_40 AC 598 ms
124,820 KB
testcase_41 AC 167 ms
84,748 KB
testcase_42 AC 548 ms
117,392 KB
testcase_43 AC 349 ms
105,688 KB
testcase_44 AC 380 ms
108,080 KB
testcase_45 AC 451 ms
114,304 KB
testcase_46 AC 125 ms
81,920 KB
testcase_47 AC 372 ms
107,816 KB
testcase_48 AC 358 ms
99,360 KB
testcase_49 AC 117 ms
77,396 KB
testcase_50 AC 169 ms
85,376 KB
testcase_51 AC 72 ms
74,112 KB
testcase_52 AC 69 ms
70,528 KB
testcase_53 AC 87 ms
76,912 KB
testcase_54 AC 42 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M = map(int,input().split())
G = {i:[] for i in range(1,N+1)}
for _ in range(M):
    a,b = map(int,input().split())
    G[a].append(b)
    G[b].append(a)
if len(G[1])==0:
    for i in range(1,N+1):
        print(0)
else:
    dist = [-1]*(N+1)
    dist[1] = 0
    que = deque([1])
    while que:
        x = que.popleft()
        for y in G[x]:
            if dist[y]==-1:
                dist[y] = dist[x]+1
                que.append(y)
    n = max(dist)
    C = {d:0 for d in range(n+1)}
    C[-1] = 0
    for i in range(1,N+1):
        C[dist[i]] += 1
    cnt0 = 1
    cnt1 = 0
    for i in range(1,N+1):
        if i>n:break
        if i%2==0:
            cnt0 += C[i]
            print(cnt0)
        else:
            cnt1 += C[i]
            print(cnt1)
    for i in range(n+1,N+1):
        if i%2==0:
            print(cnt0)
        else:
            print(cnt1)
0