結果

問題 No.2888 Mamehinata
ユーザー 👑 KA37RIKA37RI
提出日時 2024-09-13 22:07:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 714 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 129,984 KB
最終ジャッジ日時 2024-09-13 22:07:27
合計ジャッジ時間 15,986 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,384 KB
testcase_01 AC 42 ms
54,024 KB
testcase_02 AC 42 ms
53,852 KB
testcase_03 AC 43 ms
54,244 KB
testcase_04 WA -
testcase_05 AC 44 ms
55,116 KB
testcase_06 AC 43 ms
54,584 KB
testcase_07 AC 44 ms
54,560 KB
testcase_08 AC 44 ms
55,680 KB
testcase_09 AC 68 ms
54,312 KB
testcase_10 AC 44 ms
54,488 KB
testcase_11 WA -
testcase_12 AC 44 ms
55,044 KB
testcase_13 AC 183 ms
85,220 KB
testcase_14 AC 141 ms
87,600 KB
testcase_15 WA -
testcase_16 AC 378 ms
111,644 KB
testcase_17 WA -
testcase_18 AC 233 ms
90,552 KB
testcase_19 AC 419 ms
114,048 KB
testcase_20 AC 401 ms
109,168 KB
testcase_21 AC 349 ms
108,316 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 404 ms
113,360 KB
testcase_25 AC 280 ms
110,452 KB
testcase_26 AC 308 ms
109,448 KB
testcase_27 AC 185 ms
98,284 KB
testcase_28 AC 179 ms
83,536 KB
testcase_29 AC 221 ms
93,332 KB
testcase_30 AC 428 ms
117,796 KB
testcase_31 AC 383 ms
110,156 KB
testcase_32 AC 308 ms
100,120 KB
testcase_33 AC 347 ms
107,160 KB
testcase_34 AC 312 ms
103,124 KB
testcase_35 AC 280 ms
99,572 KB
testcase_36 AC 482 ms
119,836 KB
testcase_37 AC 486 ms
120,636 KB
testcase_38 AC 194 ms
89,792 KB
testcase_39 AC 428 ms
112,632 KB
testcase_40 AC 470 ms
119,944 KB
testcase_41 AC 154 ms
84,244 KB
testcase_42 AC 422 ms
113,624 KB
testcase_43 AC 333 ms
120,396 KB
testcase_44 AC 356 ms
123,820 KB
testcase_45 AC 464 ms
129,984 KB
testcase_46 AC 136 ms
83,800 KB
testcase_47 AC 371 ms
121,312 KB
testcase_48 AC 347 ms
119,440 KB
testcase_49 AC 119 ms
80,128 KB
testcase_50 AC 231 ms
93,156 KB
testcase_51 AC 82 ms
76,832 KB
testcase_52 AC 74 ms
73,292 KB
testcase_53 AC 97 ms
78,688 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:
	for _ in range(n):
		print(0)

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