結果

問題 No.1673 Lamps on a line
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-10 21:28:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 609 ms / 2,000 ms
コード長 1,479 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 87,076 KB
実行使用メモリ 90,116 KB
最終ジャッジ日時 2023-09-02 15:57:29
合計ジャッジ時間 4,408 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,232 KB
testcase_01 AC 73 ms
71,044 KB
testcase_02 AC 186 ms
80,536 KB
testcase_03 AC 174 ms
79,720 KB
testcase_04 AC 220 ms
82,204 KB
testcase_05 AC 120 ms
77,400 KB
testcase_06 AC 229 ms
82,288 KB
testcase_07 AC 315 ms
83,936 KB
testcase_08 AC 109 ms
79,256 KB
testcase_09 AC 371 ms
83,052 KB
testcase_10 AC 400 ms
84,568 KB
testcase_11 AC 129 ms
80,064 KB
testcase_12 AC 609 ms
90,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self, n):
        self.n = n
        self.bit = [0]*(self.n+1) # 1-indexed

    def init(self, init_val):
        for i, v in enumerate(init_val):
            self.add(i, v)

    def add(self, i, x):
        # i: 0-indexed
        i += 1 # to 1-indexed
        while i <= self.n:
            self.bit[i] += x
            i += (i & -i)

    def sum(self, i, j):
        # return sum of [i, j)
        # i, j: 0-indexed
        return self._sum(j) - self._sum(i)

    def _sum(self, i):
        # return sum of [0, i)
        # i: 0-indexed
        res = 0
        while i > 0:
            res += self.bit[i]
            i -= i & (-i)
        return res

    def lower_bound(self, x):
        s = 0
        pos = 0
        depth = self.n.bit_length()
        v = 1 << depth
        for i in range(depth, -1, -1):
            k = pos + v
            if k <= self.n and s + self.bit[k] < x:
                    s += self.bit[k]
                    pos += v
            v >>= 1
        return pos

    def __str__(self): # for debug
        arr = [self.sum(i,i+1) for i in range(self.n)]
        return str(arr)
import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n, q = map(int,input().split())
bit = BIT(n+1)

for i in range(q):
    l, r = map(int, input().split())
    l, r = l-1, r-1
    for j in range(l, r+1):
        bit.add(j, 1)
        t = bit.sum(j, j+1)
        bit.add(j, -t+t%2)
    print(bit.sum(0, bit.n))
0