結果

問題 No.2888 Mamehinata
ユーザー 👑 KA37RIKA37RI
提出日時 2024-09-13 22:10:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 533 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 129,664 KB
最終ジャッジ日時 2024-09-13 22:10:56
合計ジャッジ時間 16,558 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,376 KB
testcase_01 AC 47 ms
53,504 KB
testcase_02 AC 47 ms
53,888 KB
testcase_03 AC 45 ms
53,760 KB
testcase_04 AC 47 ms
53,504 KB
testcase_05 AC 46 ms
54,016 KB
testcase_06 AC 47 ms
53,632 KB
testcase_07 AC 46 ms
53,248 KB
testcase_08 AC 47 ms
54,016 KB
testcase_09 AC 48 ms
53,888 KB
testcase_10 AC 46 ms
53,888 KB
testcase_11 AC 46 ms
53,888 KB
testcase_12 AC 46 ms
53,888 KB
testcase_13 AC 195 ms
84,992 KB
testcase_14 AC 153 ms
87,552 KB
testcase_15 AC 315 ms
103,936 KB
testcase_16 AC 410 ms
111,104 KB
testcase_17 AC 142 ms
85,632 KB
testcase_18 AC 256 ms
90,624 KB
testcase_19 AC 434 ms
114,048 KB
testcase_20 AC 430 ms
108,672 KB
testcase_21 AC 385 ms
108,160 KB
testcase_22 AC 179 ms
92,800 KB
testcase_23 AC 230 ms
99,456 KB
testcase_24 AC 430 ms
113,536 KB
testcase_25 AC 302 ms
110,464 KB
testcase_26 AC 319 ms
109,056 KB
testcase_27 AC 197 ms
98,688 KB
testcase_28 AC 169 ms
83,200 KB
testcase_29 AC 238 ms
93,056 KB
testcase_30 AC 429 ms
117,504 KB
testcase_31 AC 404 ms
109,952 KB
testcase_32 AC 281 ms
99,712 KB
testcase_33 AC 353 ms
107,264 KB
testcase_34 AC 327 ms
103,040 KB
testcase_35 AC 301 ms
99,456 KB
testcase_36 AC 477 ms
119,552 KB
testcase_37 AC 505 ms
120,832 KB
testcase_38 AC 211 ms
89,600 KB
testcase_39 AC 429 ms
112,384 KB
testcase_40 AC 533 ms
120,192 KB
testcase_41 AC 173 ms
84,224 KB
testcase_42 AC 438 ms
113,536 KB
testcase_43 AC 359 ms
120,064 KB
testcase_44 AC 399 ms
123,776 KB
testcase_45 AC 471 ms
129,664 KB
testcase_46 AC 151 ms
83,584 KB
testcase_47 AC 403 ms
120,924 KB
testcase_48 AC 360 ms
119,168 KB
testcase_49 AC 127 ms
80,128 KB
testcase_50 AC 234 ms
93,056 KB
testcase_51 AC 88 ms
76,928 KB
testcase_52 AC 79 ms
72,704 KB
testcase_53 AC 107 ms
78,612 KB
testcase_54 AC 47 ms
53,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, m = [int(x) for x in input().split()]
uv = [[int(x) - 1 for x in input().split()] for _ in range(m)]

g = [[] for _ in range(n)]
for ui, vi in uv:
	g[ui].append(vi)
	g[vi].append(ui)

if len(g[0]) == 0:
	for _ in range(n):
		print(0)
	exit()

large = 10 ** 10

d = [large] * n
d[0] = 0

q = deque()
q.append(0)

while q:
	cur = q.popleft()
	for nxt in g[cur]:
		if d[nxt] >= large:
			d[nxt] = d[cur] + 1
			q.append(nxt)
			
odd = [0] * (n + 1)
even = [0] * (n + 1)

for di in d:
	if di < large:
		if di % 2 == 0:
			even[di] += 1
		else:
			odd[di] += 1
			
for i in range(n):
	odd[i+1] += odd[i]
	even[i+1] += even[i]
	
	if (i + 1) % 2 == 0:
		print(even[i+1])
	else:
		print(odd[i+1])
0