結果

問題 No.2154 あさかつの参加人数
ユーザー rlangevinrlangevin
提出日時 2024-06-16 17:18:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 626 ms / 2,000 ms
コード長 1,086 bytes
コンパイル時間 3,514 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 81,688 KB
最終ジャッジ日時 2024-06-16 17:18:55
合計ジャッジ時間 16,129 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 616 ms
81,688 KB
testcase_01 AC 584 ms
81,428 KB
testcase_02 AC 626 ms
81,408 KB
testcase_03 AC 583 ms
81,280 KB
testcase_04 AC 611 ms
81,540 KB
testcase_05 AC 253 ms
76,288 KB
testcase_06 AC 454 ms
78,208 KB
testcase_07 AC 346 ms
79,676 KB
testcase_08 AC 312 ms
79,928 KB
testcase_09 AC 147 ms
78,720 KB
testcase_10 AC 301 ms
79,488 KB
testcase_11 AC 522 ms
80,768 KB
testcase_12 AC 424 ms
79,336 KB
testcase_13 AC 243 ms
77,440 KB
testcase_14 AC 457 ms
78,868 KB
testcase_15 AC 297 ms
80,276 KB
testcase_16 AC 473 ms
79,576 KB
testcase_17 AC 489 ms
79,036 KB
testcase_18 AC 523 ms
80,068 KB
testcase_19 AC 100 ms
76,632 KB
testcase_20 AC 424 ms
80,000 KB
testcase_21 AC 131 ms
78,720 KB
testcase_22 AC 204 ms
81,180 KB
testcase_23 AC 492 ms
79,872 KB
testcase_24 AC 547 ms
80,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class Dual_Fenwick_Tree:
    def __init__(self, n):
        self._n = n + 1
        self.data = [0] * (n + 1)

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

    def sum(self, l, r):
        assert 0 <= l <= r <= self._n
        return self._sum(r) - self._sum(l)

    def _sum(self, r):
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r
        return s

    # A[l:r]にvを足す
    def add(self, l, r, v):
        self._add(l, v)
        self._add(r, -v)
    # A[x]を返す
    def get(self, x):
        return self.sum(0, x + 1)

    def __str__(self):
        temp = []
        for i in range(self._n):
            temp.append(str(self.sum(0, i + 1)))
        return ' '.join(temp)


N, M = map(int, input().split())
T = Dual_Fenwick_Tree(N)
for i in range(M):
    L, R = map(int, input().split())
    R -= 1
    T.add(R, L, 1)
    
for i in range(N):
    print(T.get(N - 1 - i))
    
0