結果

問題 No.2888 Mamehinata
ユーザー loop0919loop0919
提出日時 2024-09-13 22:02:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 942 bytes
コンパイル時間 614 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 135,496 KB
最終ジャッジ日時 2024-09-13 22:03:30
合計ジャッジ時間 15,971 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 45 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from itertools import accumulate

INF = float("inf")

N, M = map(int, input().split())
graph = [[] for _ in range(N)]

for _ in range(M):
    u, v = map(lambda x: int(x) - 1, input().split())
    graph[u].append(v)
    graph[v].append(u)

dist = [INF] * N
dist[0] = 0
que = deque([0])

while que:
    now_v = que.popleft()

    for next_v in graph[now_v]:
        if dist[next_v] != INF:
            continue
        dist[next_v] = dist[now_v] + 1
        que.append(next_v)

if dist.count(INF) == N - 1:
    for _ in range(N):
        print(0)

odd = [0] * (N + 1)
even = [0] * (N + 1)

for i in range(N):
    if dist[i] == INF:
        continue

    if dist[i] % 2 == 0:
        even[dist[i]] += 1
    else:
        odd[dist[i]] += 1

acc_odd = list(accumulate(odd))
acc_even = list(accumulate(even))

for i in range(1, N + 1):
    if i % 2 == 0:
        print(acc_even[i])
    else:
        print(acc_odd[i])
0