結果

問題 No.2888 Mamehinata
ユーザー loop0919loop0919
提出日時 2024-09-13 22:05:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 517 ms / 2,000 ms
コード長 953 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 135,736 KB
最終ジャッジ日時 2024-09-13 22:05:45
合計ジャッジ時間 15,784 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,144 KB
testcase_01 AC 39 ms
53,888 KB
testcase_02 AC 41 ms
54,144 KB
testcase_03 AC 39 ms
54,016 KB
testcase_04 AC 40 ms
53,936 KB
testcase_05 AC 41 ms
54,656 KB
testcase_06 AC 40 ms
54,016 KB
testcase_07 AC 45 ms
54,272 KB
testcase_08 AC 43 ms
54,144 KB
testcase_09 AC 41 ms
54,400 KB
testcase_10 AC 40 ms
54,104 KB
testcase_11 AC 41 ms
54,400 KB
testcase_12 AC 43 ms
53,760 KB
testcase_13 AC 185 ms
81,792 KB
testcase_14 AC 144 ms
91,612 KB
testcase_15 AC 301 ms
92,048 KB
testcase_16 AC 395 ms
123,568 KB
testcase_17 AC 121 ms
86,912 KB
testcase_18 AC 251 ms
85,404 KB
testcase_19 AC 443 ms
120,460 KB
testcase_20 AC 380 ms
112,056 KB
testcase_21 AC 414 ms
111,236 KB
testcase_22 AC 167 ms
90,900 KB
testcase_23 AC 209 ms
96,228 KB
testcase_24 AC 391 ms
128,328 KB
testcase_25 AC 332 ms
129,304 KB
testcase_26 AC 353 ms
127,080 KB
testcase_27 AC 202 ms
123,776 KB
testcase_28 AC 139 ms
83,200 KB
testcase_29 AC 253 ms
95,488 KB
testcase_30 AC 456 ms
125,868 KB
testcase_31 AC 380 ms
116,852 KB
testcase_32 AC 320 ms
105,896 KB
testcase_33 AC 369 ms
113,104 KB
testcase_34 AC 323 ms
107,704 KB
testcase_35 AC 286 ms
103,552 KB
testcase_36 AC 517 ms
124,444 KB
testcase_37 AC 503 ms
131,824 KB
testcase_38 AC 217 ms
90,780 KB
testcase_39 AC 410 ms
120,576 KB
testcase_40 AC 496 ms
129,884 KB
testcase_41 AC 151 ms
85,348 KB
testcase_42 AC 428 ms
123,008 KB
testcase_43 AC 323 ms
125,872 KB
testcase_44 AC 344 ms
124,976 KB
testcase_45 AC 410 ms
135,736 KB
testcase_46 AC 124 ms
82,412 KB
testcase_47 AC 329 ms
122,304 KB
testcase_48 AC 327 ms
111,208 KB
testcase_49 AC 99 ms
77,656 KB
testcase_50 AC 165 ms
85,432 KB
testcase_51 AC 78 ms
76,800 KB
testcase_52 AC 86 ms
72,192 KB
testcase_53 AC 88 ms
76,672 KB
testcase_54 AC 41 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

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)
    exit()

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