結果

問題 No.2888 Mamehinata
ユーザー adapchiadapchi
提出日時 2024-09-13 21:35:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 556 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 507 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 129,280 KB
最終ジャッジ日時 2024-09-13 21:36:07
合計ジャッジ時間 17,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,016 KB
testcase_01 AC 42 ms
54,272 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 47 ms
54,272 KB
testcase_04 AC 43 ms
54,272 KB
testcase_05 AC 43 ms
54,400 KB
testcase_06 AC 44 ms
54,144 KB
testcase_07 AC 43 ms
53,888 KB
testcase_08 AC 43 ms
54,272 KB
testcase_09 AC 43 ms
54,016 KB
testcase_10 AC 42 ms
54,144 KB
testcase_11 AC 43 ms
54,056 KB
testcase_12 AC 43 ms
53,760 KB
testcase_13 AC 183 ms
82,048 KB
testcase_14 AC 176 ms
91,976 KB
testcase_15 AC 324 ms
91,776 KB
testcase_16 AC 480 ms
111,488 KB
testcase_17 AC 142 ms
85,760 KB
testcase_18 AC 260 ms
86,656 KB
testcase_19 AC 484 ms
110,336 KB
testcase_20 AC 465 ms
105,472 KB
testcase_21 AC 420 ms
103,168 KB
testcase_22 AC 205 ms
90,368 KB
testcase_23 AC 244 ms
95,104 KB
testcase_24 AC 417 ms
116,600 KB
testcase_25 AC 334 ms
114,944 KB
testcase_26 AC 388 ms
114,304 KB
testcase_27 AC 238 ms
109,824 KB
testcase_28 AC 149 ms
82,304 KB
testcase_29 AC 261 ms
91,956 KB
testcase_30 AC 492 ms
114,176 KB
testcase_31 AC 414 ms
107,648 KB
testcase_32 AC 336 ms
98,688 KB
testcase_33 AC 394 ms
105,472 KB
testcase_34 AC 343 ms
100,864 KB
testcase_35 AC 298 ms
97,664 KB
testcase_36 AC 525 ms
117,632 KB
testcase_37 AC 556 ms
118,656 KB
testcase_38 AC 223 ms
88,448 KB
testcase_39 AC 506 ms
111,104 KB
testcase_40 AC 549 ms
117,632 KB
testcase_41 AC 176 ms
84,864 KB
testcase_42 AC 487 ms
112,000 KB
testcase_43 AC 374 ms
116,308 KB
testcase_44 AC 410 ms
122,064 KB
testcase_45 AC 451 ms
129,280 KB
testcase_46 AC 154 ms
83,072 KB
testcase_47 AC 404 ms
121,088 KB
testcase_48 AC 412 ms
108,800 KB
testcase_49 AC 124 ms
77,696 KB
testcase_50 AC 220 ms
91,392 KB
testcase_51 AC 94 ms
76,672 KB
testcase_52 AC 85 ms
72,832 KB
testcase_53 AC 106 ms
77,312 KB
testcase_54 AC 47 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

G = [[] for _ in range(N)]
for _ in range(M):
  u, v = [int(x) - 1 for x in input().split()]
  G[u].append(v)
  G[v].append(u)
  
que = deque([0])
dist = [-1] * N
dist[0] = 0

while que:
  u = que.popleft()
  for v in G[u]:
    if dist[v] == -1:
      dist[v] = dist[u] + 1
      que.append(v)
      
if sum(dist[i] != -1 for i in range(N)) == 1:
  for i in range(N):
    print(0)
  exit()
      
sm = [[0, 0] for _ in range(N + 1)]
for i in range(N):
  if dist[i] != -1:
    sm[dist[i]][dist[i] % 2] += 1
for i in range(1, N + 1):
  for j in range(2):
    sm[i][j] += sm[i - 1][j]
    
for i in range(1, N + 1):
  print(sm[i][i % 2])
0