結果

問題 No.2888 Mamehinata
ユーザー 👑 KA37RIKA37RI
提出日時 2024-09-13 22:04:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 712 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 129,792 KB
最終ジャッジ日時 2024-09-13 22:05:14
合計ジャッジ時間 17,562 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
53,632 KB
testcase_01 AC 46 ms
53,632 KB
testcase_02 AC 47 ms
53,504 KB
testcase_03 AC 48 ms
53,888 KB
testcase_04 WA -
testcase_05 AC 48 ms
54,272 KB
testcase_06 AC 50 ms
54,144 KB
testcase_07 AC 45 ms
53,760 KB
testcase_08 AC 46 ms
53,760 KB
testcase_09 AC 50 ms
54,144 KB
testcase_10 AC 47 ms
53,760 KB
testcase_11 WA -
testcase_12 AC 47 ms
53,632 KB
testcase_13 AC 199 ms
84,992 KB
testcase_14 AC 153 ms
87,680 KB
testcase_15 WA -
testcase_16 AC 410 ms
111,616 KB
testcase_17 WA -
testcase_18 AC 262 ms
90,752 KB
testcase_19 AC 457 ms
113,792 KB
testcase_20 AC 404 ms
109,184 KB
testcase_21 AC 401 ms
107,776 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 395 ms
113,536 KB
testcase_25 AC 322 ms
110,336 KB
testcase_26 AC 361 ms
109,312 KB
testcase_27 AC 203 ms
98,176 KB
testcase_28 AC 159 ms
83,456 KB
testcase_29 AC 238 ms
93,312 KB
testcase_30 AC 459 ms
117,632 KB
testcase_31 AC 418 ms
109,696 KB
testcase_32 AC 297 ms
100,224 KB
testcase_33 AC 374 ms
106,880 KB
testcase_34 AC 369 ms
103,296 KB
testcase_35 AC 304 ms
99,456 KB
testcase_36 AC 530 ms
119,936 KB
testcase_37 AC 552 ms
120,832 KB
testcase_38 AC 220 ms
89,728 KB
testcase_39 AC 435 ms
112,384 KB
testcase_40 AC 550 ms
119,936 KB
testcase_41 AC 171 ms
83,840 KB
testcase_42 AC 425 ms
113,408 KB
testcase_43 AC 386 ms
119,936 KB
testcase_44 AC 376 ms
124,032 KB
testcase_45 AC 468 ms
129,792 KB
testcase_46 AC 149 ms
83,584 KB
testcase_47 AC 416 ms
121,184 KB
testcase_48 AC 376 ms
119,424 KB
testcase_49 AC 136 ms
80,128 KB
testcase_50 AC 253 ms
92,928 KB
testcase_51 AC 97 ms
76,928 KB
testcase_52 AC 87 ms
72,576 KB
testcase_53 AC 115 ms
78,336 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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:
	print("\n".join(["0"] * n))

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