結果

問題 No.2395 区間二次変換一点取得
ユーザー mkawa2mkawa2
提出日時 2023-07-28 22:57:58
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 2,019 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 85,632 KB
最終ジャッジ日時 2024-04-16 06:55:07
合計ジャッジ時間 5,080 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,608 KB
testcase_01 AC 42 ms
52,352 KB
testcase_02 AC 41 ms
52,736 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 46 ms
53,376 KB
testcase_11 AC 80 ms
71,808 KB
testcase_12 AC 117 ms
77,440 KB
testcase_13 AC 283 ms
85,376 KB
testcase_14 AC 292 ms
85,504 KB
testcase_15 AC 297 ms
85,504 KB
testcase_16 AC 299 ms
85,632 KB
testcase_17 AC 293 ms
85,632 KB
testcase_18 AC 242 ms
85,376 KB
testcase_19 AC 245 ms
85,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(1000005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# md = 10**9+7
md = 998244353

class BitSum:
    def __init__(self, n):
        self._n = n+1
        self._table = [0]*self._n
        self._origin = [0]*n

    def __getitem__(self, item):
        return self._origin[item]

    def add(self, i, x):
        self._origin[i] += x
        i += 1
        while i < self._n:
            self._table[i] += x
            i += i & -i

    def sum(self, i):
        i += 1
        res = 0
        while i > 0:
            res += self._table[i]
            i -= i & -i
        return res

    def sumlr(self, l, r):
        if l >= r: return 0
        if l == 0: return self.sum(r-1)
        return self.sum(r-1)-self.sum(l-1)

    # return "min(i) of sum(i)>=x" or "N"
    def bisect(self, x):
        idx = 0
        d = 1 << (self._n-1).bit_length()-1
        while d:
            if idx+d < self._n and self._table[idx+d] < x:
                x -= self._table[idx+d]
                idx |= d
            d >>= 1
        return idx

n,b,q=LI()

xx=[(a+1)%b for a in range(q+1)]
zz=[1]
for _ in range(q):zz.append(zz[-1]*3%b)
yy=[1]*(n+1)
for i in range(1,q+1):
    yy[i]=yy[i-1]*3%b+2*xx[i]*zz[i-1]%b
    yy[i]%=b

bit=BitSum(n+1)
for _ in range(q):
    l,m,r=LI()
    l,m=l-1,m-1
    bit.add(l,1)
    bit.add(r,-1)
    i=bit.sum(m)
    print(xx[i],yy[i],zz[i])
0