結果

問題 No.2888 Mamehinata
ユーザー titiatitia
提出日時 2024-09-13 21:41:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,158 ms / 2,000 ms
コード長 618 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 59,264 KB
最終ジャッジ日時 2024-09-13 21:42:08
合計ジャッジ時間 28,205 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 234 ms
18,944 KB
testcase_14 AC 215 ms
22,400 KB
testcase_15 AC 564 ms
33,408 KB
testcase_16 AC 884 ms
46,208 KB
testcase_17 AC 213 ms
22,912 KB
testcase_18 AC 423 ms
25,344 KB
testcase_19 AC 1,012 ms
47,232 KB
testcase_20 AC 805 ms
41,344 KB
testcase_21 AC 854 ms
40,704 KB
testcase_22 AC 308 ms
27,904 KB
testcase_23 AC 454 ms
33,408 KB
testcase_24 AC 895 ms
49,408 KB
testcase_25 AC 623 ms
41,984 KB
testcase_26 AC 714 ms
47,360 KB
testcase_27 AC 415 ms
34,688 KB
testcase_28 AC 160 ms
17,536 KB
testcase_29 AC 403 ms
28,160 KB
testcase_30 AC 1,042 ms
53,504 KB
testcase_31 AC 850 ms
46,464 KB
testcase_32 AC 591 ms
36,608 KB
testcase_33 AC 785 ms
43,776 KB
testcase_34 AC 684 ms
38,656 KB
testcase_35 AC 546 ms
35,328 KB
testcase_36 AC 1,118 ms
58,240 KB
testcase_37 AC 1,139 ms
59,136 KB
testcase_38 AC 322 ms
25,088 KB
testcase_39 AC 967 ms
50,816 KB
testcase_40 AC 1,158 ms
59,264 KB
testcase_41 AC 196 ms
19,712 KB
testcase_42 AC 970 ms
52,352 KB
testcase_43 AC 759 ms
42,880 KB
testcase_44 AC 838 ms
46,720 KB
testcase_45 AC 951 ms
51,456 KB
testcase_46 AC 136 ms
16,256 KB
testcase_47 AC 815 ms
45,824 KB
testcase_48 AC 697 ms
32,848 KB
testcase_49 AC 120 ms
12,928 KB
testcase_50 AC 378 ms
20,736 KB
testcase_51 AC 42 ms
10,752 KB
testcase_52 AC 34 ms
10,880 KB
testcase_53 AC 72 ms
11,776 KB
testcase_54 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import deque

N,M=map(int,input().split())

E=[[] for i in range(N)]

for i in range(M):
    x,y=map(int,input().split())
    x-=1
    y-=1
    E[x].append(y)
    E[y].append(x)

if E[0]==[]:
    for i in range(N):
        print(0)
    exit()

Q=deque()
Q.append(0)
DIS=[1<<30]*N

DIS[0]=0
while Q:
    x=Q.popleft()
    for to in E[x]:
        if DIS[to]>DIS[x]+1:
            DIS[to]=DIS[x]+1
            Q.append(to)

ANS=[0]*(N+1)
for d in DIS:
    if d<N+1:
        ANS[d]+=1

for i in range(2,N+1):
    ANS[i]+=ANS[i-2]

for ans in ANS[1:]:
    print(ans)
0