結果

問題 No.259 セグメントフィッシング+
ユーザー maspymaspy
提出日時 2020-04-01 01:58:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,107 ms / 2,000 ms
コード長 2,082 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 47,524 KB
最終ジャッジ日時 2024-06-25 17:16:33
合計ジャッジ時間 21,863 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 33 ms
11,008 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
11,008 KB
testcase_08 AC 1,082 ms
46,368 KB
testcase_09 AC 1,076 ms
46,236 KB
testcase_10 AC 1,077 ms
46,500 KB
testcase_11 AC 1,080 ms
46,368 KB
testcase_12 AC 1,081 ms
46,424 KB
testcase_13 AC 1,100 ms
46,548 KB
testcase_14 AC 1,083 ms
46,632 KB
testcase_15 AC 1,106 ms
46,504 KB
testcase_16 AC 1,104 ms
46,420 KB
testcase_17 AC 1,092 ms
46,524 KB
testcase_18 AC 1,082 ms
46,452 KB
testcase_19 AC 1,094 ms
46,452 KB
testcase_20 AC 1,107 ms
46,248 KB
testcase_21 AC 1,104 ms
46,428 KB
testcase_22 AC 1,093 ms
46,600 KB
testcase_23 AC 538 ms
42,012 KB
testcase_24 AC 944 ms
47,496 KB
testcase_25 AC 956 ms
47,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
N, Q = map(int, readline().split())
X, T, Y, Z = zip(*[line.split() for line in readlines()])
T = map(int, T)
Y = map(int, Y)
Z = map(int, Z)


class BinaryIndexedTree():
    def __init__(self, seq):
        self.size = len(seq)
        self.depth = self.size.bit_length()
        self.build(seq)

    def build(self, seq):
        data = seq
        size = self.size
        for i, x in enumerate(data):
            j = i + (i & (-i))
            if j < size:
                data[j] += data[i]
        self.data = data

    def __repr__(self):
        return self.data.__repr__()

    def get_sum(self, i):
        data = self.data
        s = 0
        while i:
            s += data[i]
            i -= i & -i
        return s

    def add(self, i, x):
        data = self.data
        size = self.size
        while i < size:
            data[i] += x
            i += i & -i

    def find_kth_element(self, k):
        data = self.data
        size = self.size
        x, sx = 0, 0
        dx = 1 << (self.depth)
        for i in range(self.depth - 1, -1, -1):
            dx = (1 << i)
            if x + dx >= size:
                continue
            y = x + dx
            sy = sx + data[y]
            if sy < k:
                x, sx = y, sy
        return x + 1


bit = BinaryIndexedTree([0] * (N + N + N + N + 10))
for x, t, y, z in zip(X, T, Y, Z):
    if x == b'L':
        n = N + N - 1 - y
        n -= t
        n %= (N + N)
        bit.add(n + 1, z)
        bit.add(n + N + N + 1, z)
    elif x == b'R':
        n = y - t
        n %= (N + N)
        bit.add(n + 1, z)
        bit.add(n + N + N + 1, z)
    elif x == b'C':
        cnt = 0
        z -= 1
        for y1, z1 in ((y, z), (N + N - 1 - z, N + N - 1 - y)):
            y1 -= t
            z1 -= t
            q = y1 // (N + N)
            y1 -= q * (N + N)
            z1 -= q * (N + N)
            cnt += bit.get_sum(z1 + 1) - bit.get_sum(y1)
        print(cnt)
0