結果

問題 No.1982 [Cherry 4th Tune B] 絶険
ユーザー tamatotamato
提出日時 2022-06-17 23:17:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,838 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 273,980 KB
最終ジャッジ日時 2024-04-17 15:44:26
合計ジャッジ時間 33,836 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 44 ms
56,832 KB
testcase_03 AC 803 ms
178,700 KB
testcase_04 AC 1,171 ms
212,260 KB
testcase_05 AC 982 ms
180,224 KB
testcase_06 AC 1,551 ms
231,716 KB
testcase_07 AC 1,892 ms
258,312 KB
testcase_08 AC 1,208 ms
217,628 KB
testcase_09 AC 1,497 ms
232,812 KB
testcase_10 AC 1,455 ms
232,616 KB
testcase_11 AC 777 ms
166,024 KB
testcase_12 AC 1,769 ms
245,424 KB
testcase_13 AC 813 ms
183,080 KB
testcase_14 AC 1,016 ms
210,232 KB
testcase_15 AC 898 ms
182,212 KB
testcase_16 AC 1,294 ms
208,960 KB
testcase_17 AC 2,561 ms
272,456 KB
testcase_18 AC 2,189 ms
265,404 KB
testcase_19 AC 2,503 ms
268,728 KB
testcase_20 AC 375 ms
119,964 KB
testcase_21 AC 652 ms
147,456 KB
testcase_22 AC 1,053 ms
204,532 KB
testcase_23 AC 576 ms
135,400 KB
testcase_24 AC 841 ms
170,240 KB
testcase_25 AC 2,348 ms
266,940 KB
testcase_26 AC 2,332 ms
264,672 KB
testcase_27 AC 433 ms
118,656 KB
testcase_28 AC 184 ms
102,784 KB
testcase_29 TLE -
testcase_30 AC 1,784 ms
273,980 KB
testcase_31 AC 268 ms
131,092 KB
testcase_32 TLE -
testcase_33 AC 2,303 ms
273,732 KB
testcase_34 AC 2,421 ms
272,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.buffer.readline

    class Bit:
        def __init__(self, n):
            self.size = n
            self.tree = [0] * (n + 1)

        def sum(self, i):
            s = 0
            while i > 0:
                s += self.tree[i]
                i -= i & -i
            return s

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

        def lower_bound(self, w):
            if w <= 0:
                return 0
            x = 0
            k = 1 << (self.size.bit_length() - 1)
            while k:
                if x + k <= self.size and self.tree[x + k] < w:
                    w -= self.tree[x + k]
                    x += k
                k >>= 1
            return x + 1

    N, K, Q = map(int, input().split())
    ope = []
    for _ in range(K):
        ope.append(tuple(map(int, input().split())))

    query = []
    for _ in range(Q):
        query.append(tuple(map(int, input().split())))

    OK = [K] * Q
    NG = [-1] * Q
    for _ in range(K.bit_length()):
        MID = [(ok + ng) // 2 for ok, ng in zip(OK, NG)]
        T = [[] for _ in range(K+1)]
        for i, t in enumerate(MID):
            T[t].append(i)

        bit = Bit(N+2)
        for k in range(K):
            l, r, c, h = ope[k]
            t = k
            bit.add(l, h)
            bit.add(r + 1, -h)
            for i in T[t]:
                j, x = query[i]
                hh = bit.sum(j)
                if x <= hh:
                    OK[i] = MID[i]
                else:
                    NG[i] = MID[i]

    for i in range(Q):
        k = OK[i]
        if k < K:
            _, _, c, _ = ope[k]
            print(c)
        else:
            print(-1)


if __name__ == '__main__':
    main()
0