結果

問題 No.2888 Mamehinata
ユーザー ThetaTheta
提出日時 2024-10-01 19:42:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 780 ms / 2,000 ms
コード長 1,008 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 180,904 KB
最終ジャッジ日時 2024-10-01 19:43:09
合計ジャッジ時間 22,725 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,632 KB
testcase_01 AC 45 ms
54,272 KB
testcase_02 AC 47 ms
53,760 KB
testcase_03 AC 47 ms
54,016 KB
testcase_04 AC 47 ms
54,144 KB
testcase_05 AC 48 ms
54,528 KB
testcase_06 AC 47 ms
54,656 KB
testcase_07 AC 47 ms
54,144 KB
testcase_08 AC 47 ms
54,144 KB
testcase_09 AC 47 ms
54,528 KB
testcase_10 AC 57 ms
54,144 KB
testcase_11 AC 44 ms
54,144 KB
testcase_12 AC 44 ms
54,656 KB
testcase_13 AC 188 ms
85,760 KB
testcase_14 AC 165 ms
91,776 KB
testcase_15 AC 365 ms
105,856 KB
testcase_16 AC 559 ms
136,788 KB
testcase_17 AC 154 ms
91,136 KB
testcase_18 AC 264 ms
91,520 KB
testcase_19 AC 633 ms
136,152 KB
testcase_20 AC 514 ms
122,444 KB
testcase_21 AC 517 ms
121,512 KB
testcase_22 AC 225 ms
102,528 KB
testcase_23 AC 260 ms
111,616 KB
testcase_24 AC 507 ms
133,432 KB
testcase_25 AC 368 ms
123,008 KB
testcase_26 AC 434 ms
124,640 KB
testcase_27 AC 243 ms
105,856 KB
testcase_28 AC 195 ms
88,320 KB
testcase_29 AC 292 ms
106,556 KB
testcase_30 AC 674 ms
143,296 KB
testcase_31 AC 630 ms
141,436 KB
testcase_32 AC 411 ms
117,844 KB
testcase_33 AC 577 ms
136,468 KB
testcase_34 AC 441 ms
126,936 KB
testcase_35 AC 351 ms
119,428 KB
testcase_36 AC 708 ms
162,328 KB
testcase_37 AC 780 ms
163,608 KB
testcase_38 AC 273 ms
99,712 KB
testcase_39 AC 678 ms
145,388 KB
testcase_40 AC 752 ms
150,660 KB
testcase_41 AC 237 ms
90,752 KB
testcase_42 AC 701 ms
150,768 KB
testcase_43 AC 452 ms
144,308 KB
testcase_44 AC 500 ms
166,612 KB
testcase_45 AC 564 ms
180,904 KB
testcase_46 AC 172 ms
87,808 KB
testcase_47 AC 480 ms
164,396 KB
testcase_48 AC 469 ms
136,024 KB
testcase_49 AC 118 ms
78,464 KB
testcase_50 AC 239 ms
98,432 KB
testcase_51 AC 89 ms
76,672 KB
testcase_52 AC 81 ms
72,064 KB
testcase_53 AC 115 ms
76,928 KB
testcase_54 AC 48 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
from collections import deque
from itertools import accumulate, filterfalse
from math import inf, isinf


def main():
    N, M = map(int, input().split())
    graph = [set() for _ in range(N)]
    for _ in range(M):
        u, v = map(lambda n: int(n)-1, input().split())
        graph[u].add(v)
        graph[v].add(u)
    if not graph[0]:
        for _ in range(N):
            print(0)
        return

    dist = [inf] * N
    dist[0] = 0
    q = deque([0])
    while q:
        cur = q.popleft()
        for n in graph[cur]:
            if dist[n] > dist[cur] + 1:
                dist[n] = dist[cur] + 1
                q.append(n)

    dist = sorted(filterfalse(isinf, dist))

    even_accum = list(accumulate(map(lambda n: int(n % 2 == 0), dist)))
    for t in range(1, N+1):
        idx = bisect_right(dist, t) - 1
        if t % 2 == 0:
            print(even_accum[idx])
        else:
            print(idx+1-even_accum[idx])


if __name__ == "__main__":
    main()
0