結果

問題 No.2395 区間二次変換一点取得
ユーザー ecotteaecottea
提出日時 2023-07-21 23:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 1,186 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 82,048 KB
最終ジャッジ日時 2024-09-22 01:14:07
合計ジャッジ時間 5,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,216 KB
testcase_01 AC 36 ms
52,944 KB
testcase_02 AC 36 ms
52,652 KB
testcase_03 AC 35 ms
52,008 KB
testcase_04 AC 35 ms
53,752 KB
testcase_05 AC 33 ms
52,604 KB
testcase_06 AC 35 ms
52,412 KB
testcase_07 AC 35 ms
53,040 KB
testcase_08 AC 35 ms
53,180 KB
testcase_09 AC 36 ms
53,528 KB
testcase_10 AC 41 ms
53,132 KB
testcase_11 AC 73 ms
74,464 KB
testcase_12 AC 125 ms
77,648 KB
testcase_13 AC 404 ms
80,128 KB
testcase_14 AC 418 ms
80,256 KB
testcase_15 AC 408 ms
80,076 KB
testcase_16 AC 409 ms
80,164 KB
testcase_17 AC 417 ms
79,928 KB
testcase_18 AC 372 ms
82,048 KB
testcase_19 AC 376 ms
81,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Python3 でも 1,422 ms / 2,000 ms で AC

class FenwickTree:
    def __init__(self, n):
        self.n = n
        self.v = [0] * (n + 1)

    # 区間 [0..r) の和を返す
    def sum(self, r):
        res = 0
        while r > 0:
            res += self.v[r]
            r -= r & -r
        return res

    # 位置 i に x を加算する
    def add(self, i, x):
        i += 1
        while i <= self.n:
            self.v[i] += x
            i += i & -i

N, B, Q = map(int, input().split())

# x[j], y[j], z[j] : X[i], Y[i], Z[i] が j 回操作された後の値(i によらない)
x = [0] * (Q + 1)
y = [0] * (Q + 1)
z = [0] * (Q + 1)
x[0] = 1 % B
y[0] = 1 % B
z[0] = 1 % B
for j in range(Q):
    x[j + 1] = (x[j] + 1) % B
    y[j + 1] = (3 * y[j] + 2 * x[j + 1] * z[j]) % B
    z[j + 1] = (3 * z[j]) % B

# 操作された回数だけを覚えておくためのフェニック木
ft = FenwickTree(N + 1)

for _ in range(Q):
    l, m, r = map(int, input().split())
    l -= 1

    # 区間加算 & 1点参照は,1点加算 & 1点減算 & 左からの区間総和 で代用できる.
    ft.add(l, 1)
    ft.add(r, -1)
    j = ft.sum(m)

    print(x[j], y[j], z[j])
0