結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,856 KB
testcase_01 AC 42 ms
54,060 KB
testcase_02 AC 45 ms
56,960 KB
testcase_03 AC 821 ms
178,700 KB
testcase_04 AC 1,253 ms
212,336 KB
testcase_05 AC 1,030 ms
180,096 KB
testcase_06 AC 1,573 ms
232,104 KB
testcase_07 AC 1,783 ms
257,984 KB
testcase_08 AC 1,217 ms
217,872 KB
testcase_09 AC 1,514 ms
233,320 KB
testcase_10 AC 1,568 ms
232,612 KB
testcase_11 AC 860 ms
165,760 KB
testcase_12 AC 1,818 ms
245,288 KB
testcase_13 AC 843 ms
182,808 KB
testcase_14 AC 1,070 ms
210,248 KB
testcase_15 AC 956 ms
182,340 KB
testcase_16 AC 1,351 ms
208,828 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

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+1)
        for k in range(K):
            l, r, c, h = ope[k]
            bit.add(l, h)
            bit.add(r + 1, -h)
            for i in T[k]:
                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