結果

問題 No.151 セグメントフィッシング
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-09 20:15:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 5,000 ms
コード長 1,798 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-07-07 02:24:58
合計ジャッジ時間 4,085 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,672 KB
testcase_01 AC 40 ms
52,376 KB
testcase_02 AC 40 ms
53,212 KB
testcase_03 AC 39 ms
52,828 KB
testcase_04 AC 40 ms
52,596 KB
testcase_05 AC 39 ms
53,496 KB
testcase_06 AC 41 ms
53,852 KB
testcase_07 AC 41 ms
54,012 KB
testcase_08 AC 93 ms
76,476 KB
testcase_09 AC 92 ms
77,180 KB
testcase_10 AC 90 ms
76,588 KB
testcase_11 AC 95 ms
76,780 KB
testcase_12 AC 101 ms
77,168 KB
testcase_13 AC 103 ms
77,088 KB
testcase_14 AC 103 ms
77,696 KB
testcase_15 AC 103 ms
77,184 KB
testcase_16 AC 105 ms
77,440 KB
testcase_17 AC 64 ms
76,416 KB
testcase_18 AC 63 ms
76,544 KB
testcase_19 AC 104 ms
77,296 KB
testcase_20 AC 109 ms
77,612 KB
testcase_21 AC 90 ms
76,160 KB
testcase_22 AC 93 ms
76,140 KB
testcase_23 AC 109 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10 ** 7)


class fenwick_tree(object):
    def __init__(self, n):
        self.n = n
        self.log = n.bit_length()
        self.data = [0] * n

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

    def add(self, p, x):
        """ a[p] += xを行う"""
        p += 1
        while p <= self.n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, l, r):
        """a[l] + a[l+1] + .. + a[r-1]を返す"""
        return self.__sum(r) - self.__sum(l)

    def lower_bound(self, x):
        """a[0] + a[1] + .. a[i] >= x となる最小のiを返す"""
        if x <= 0:
            return -1
        i = 0
        k = 1 << self.log
        while k:
            if i + k <= self.n and self.data[i + k - 1] < x:
                x -= self.data[i + k - 1]
                i += k
            k >>= 1
        return i


N, Q = map(int, input().split())
bit = fenwick_tree(2 * N)
ans = []

for time in range(Q):
    X, Y, Z = input().rstrip().split()
    if X == "L":
        Y = (int(Y) + time) % (2 * N)
        bit.add(Y, int(Z))
    elif X == "R":
        Y = (2 * N - int(Y) - 1 + time) % (2 * N)
        bit.add(Y, int(Z))
    else:
        cnt = 0
        L = (int(Y) + time) % (2 * N)
        R = (int(Z) + time - 1) % (2 * N)
        if L <= R:
            cnt += bit.sum(L, R + 1)
        else:
            cnt += bit.sum(0, R + 1) + bit.sum(L, 2 * N)
        L = (2 * N - int(Z) + time) % (2 * N)
        R = (2 * N - int(Y) - 1 + time) % (2 * N)
        if L <= R:
            cnt += bit.sum(L, R + 1)
        else:
            cnt += bit.sum(0, R + 1) + bit.sum(L, 2 * N)
        ans.append(cnt)

print(*ans, sep="\n")
0