結果

問題 No.2888 Mamehinata
ユーザー noriocnorioc
提出日時 2024-11-24 07:09:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,459 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 142,096 KB
最終ジャッジ日時 2024-11-24 07:09:30
合計ジャッジ時間 21,639 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,760 KB
testcase_01 AC 47 ms
53,760 KB
testcase_02 AC 47 ms
53,760 KB
testcase_03 AC 54 ms
53,760 KB
testcase_04 WA -
testcase_05 AC 48 ms
54,272 KB
testcase_06 AC 49 ms
54,400 KB
testcase_07 AC 49 ms
53,632 KB
testcase_08 AC 48 ms
53,888 KB
testcase_09 AC 48 ms
54,144 KB
testcase_10 AC 48 ms
53,632 KB
testcase_11 WA -
testcase_12 AC 49 ms
54,144 KB
testcase_13 AC 218 ms
82,944 KB
testcase_14 AC 170 ms
87,808 KB
testcase_15 WA -
testcase_16 AC 560 ms
116,104 KB
testcase_17 WA -
testcase_18 AC 312 ms
90,240 KB
testcase_19 AC 677 ms
122,832 KB
testcase_20 AC 576 ms
114,636 KB
testcase_21 AC 587 ms
111,584 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 544 ms
115,732 KB
testcase_25 AC 340 ms
103,100 KB
testcase_26 AC 389 ms
105,484 KB
testcase_27 AC 249 ms
91,516 KB
testcase_28 AC 186 ms
84,652 KB
testcase_29 AC 300 ms
96,124 KB
testcase_30 AC 607 ms
126,820 KB
testcase_31 AC 532 ms
120,092 KB
testcase_32 AC 385 ms
107,408 KB
testcase_33 AC 502 ms
113,296 KB
testcase_34 AC 430 ms
106,428 KB
testcase_35 AC 382 ms
102,932 KB
testcase_36 AC 685 ms
134,356 KB
testcase_37 AC 652 ms
137,024 KB
testcase_38 AC 285 ms
92,908 KB
testcase_39 AC 537 ms
118,064 KB
testcase_40 AC 688 ms
132,768 KB
testcase_41 AC 203 ms
84,512 KB
testcase_42 AC 567 ms
124,792 KB
testcase_43 AC 428 ms
129,848 KB
testcase_44 AC 431 ms
136,052 KB
testcase_45 AC 477 ms
142,096 KB
testcase_46 AC 188 ms
85,120 KB
testcase_47 AC 422 ms
132,332 KB
testcase_48 AC 453 ms
116,084 KB
testcase_49 AC 134 ms
77,696 KB
testcase_50 AC 246 ms
85,504 KB
testcase_51 AC 99 ms
76,672 KB
testcase_52 AC 96 ms
73,216 KB
testcase_53 AC 116 ms
76,800 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
    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.rangesum(0, i))
    else:
        print(odds.rangesum(0, i))
0