結果

問題 No.2154 あさかつの参加人数
ユーザー rlangevinrlangevin
提出日時 2024-06-16 17:18:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,086 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,984 KB
最終ジャッジ日時 2024-06-16 17:18:23
合計ジャッジ時間 11,149 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

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