結果

問題 No.2888 Mamehinata
ユーザー noriocnorioc
提出日時 2024-11-24 07:40:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 557 ms / 2,000 ms
コード長 1,496 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 141,964 KB
最終ジャッジ日時 2024-11-24 07:40:51
合計ジャッジ時間 16,567 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,888 KB
testcase_01 AC 38 ms
53,632 KB
testcase_02 AC 38 ms
53,504 KB
testcase_03 AC 39 ms
53,760 KB
testcase_04 AC 39 ms
54,016 KB
testcase_05 AC 38 ms
54,272 KB
testcase_06 AC 40 ms
54,528 KB
testcase_07 AC 38 ms
54,016 KB
testcase_08 AC 38 ms
53,888 KB
testcase_09 AC 38 ms
54,016 KB
testcase_10 AC 38 ms
53,888 KB
testcase_11 AC 37 ms
54,400 KB
testcase_12 AC 39 ms
54,272 KB
testcase_13 AC 172 ms
82,816 KB
testcase_14 AC 129 ms
87,680 KB
testcase_15 AC 316 ms
97,708 KB
testcase_16 AC 434 ms
115,964 KB
testcase_17 AC 130 ms
85,376 KB
testcase_18 AC 248 ms
90,372 KB
testcase_19 AC 533 ms
122,708 KB
testcase_20 AC 466 ms
114,576 KB
testcase_21 AC 466 ms
111,964 KB
testcase_22 AC 171 ms
93,456 KB
testcase_23 AC 205 ms
97,844 KB
testcase_24 AC 394 ms
115,340 KB
testcase_25 AC 265 ms
102,972 KB
testcase_26 AC 343 ms
105,608 KB
testcase_27 AC 162 ms
91,672 KB
testcase_28 AC 148 ms
84,260 KB
testcase_29 AC 234 ms
95,864 KB
testcase_30 AC 529 ms
126,800 KB
testcase_31 AC 429 ms
119,964 KB
testcase_32 AC 312 ms
107,540 KB
testcase_33 AC 406 ms
113,292 KB
testcase_34 AC 326 ms
106,684 KB
testcase_35 AC 299 ms
102,816 KB
testcase_36 AC 557 ms
134,592 KB
testcase_37 AC 538 ms
137,016 KB
testcase_38 AC 207 ms
92,912 KB
testcase_39 AC 457 ms
115,380 KB
testcase_40 AC 512 ms
132,648 KB
testcase_41 AC 156 ms
84,172 KB
testcase_42 AC 469 ms
124,928 KB
testcase_43 AC 309 ms
129,808 KB
testcase_44 AC 326 ms
135,928 KB
testcase_45 AC 351 ms
141,964 KB
testcase_46 AC 128 ms
85,228 KB
testcase_47 AC 325 ms
132,200 KB
testcase_48 AC 341 ms
115,956 KB
testcase_49 AC 101 ms
77,440 KB
testcase_50 AC 163 ms
85,504 KB
testcase_51 AC 74 ms
77,184 KB
testcase_52 AC 67 ms
73,728 KB
testcase_53 AC 88 ms
77,184 KB
testcase_54 AC 47 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque


class FenwickTree:
    def __init__(self, n):
        self.data = [0] * (n+10)
        self.n = (n+10)

    def add(self, p, x):
        assert 0 <= p < self.n
        p += 1
        while p < len(self.data):
            self.data[p] += x
            p += p & -p

    def sum(self, p):
        """区間 [0, p] の和"""
        assert 0 <= p < self.n
        p += 1
        s = 0
        while p > 0:
            s += self.data[p]
            p -= p & -p
        return s

    def rangesum(self, l, r):
        """区間 [l, r] の和"""
        assert 0 <= l <= r < self.n
        s = self.sum(r)
        if l > 0:
            s -= self.sum(l-1)
        return s


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


def bfs():
    evens = FenwickTree(N+10)
    odds = FenwickTree(N+10)
    if len(adj[0]) == 0:
        return evens, odds

    q = deque([(0, 0)])  # (node, dist)
    used = set()
    while q:
        v, d = q.popleft()
        if v in used: continue
        used.add(v)
        if d % 2 == 0:
            evens.add(d, 1)
        else:
            odds.add(d, 1)

        for to in adj[v]:
            if to in used: continue
            q.append((to, d+1))

    return evens, odds


evens, odds = bfs()
for i in range(1, N+1):
    if i % 2 == 0:
        print(evens.sum(i))
    else:
        print(odds.sum(i))
0