結果

問題 No.1982 [Cherry 4th Tune B] 絶険
ユーザー tamatotamato
提出日時 2022-06-17 23:19:54
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,847 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 273,076 KB
最終ジャッジ日時 2024-10-09 09:51:46
合計ジャッジ時間 52,993 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 43 ms
57,088 KB
testcase_03 AC 806 ms
178,432 KB
testcase_04 AC 1,261 ms
211,896 KB
testcase_05 AC 1,092 ms
180,224 KB
testcase_06 AC 1,619 ms
231,976 KB
testcase_07 AC 1,984 ms
257,616 KB
testcase_08 AC 1,295 ms
217,748 KB
testcase_09 AC 1,517 ms
233,568 KB
testcase_10 AC 1,611 ms
232,612 KB
testcase_11 AC 856 ms
166,144 KB
testcase_12 AC 1,650 ms
245,544 KB
testcase_13 AC 830 ms
182,692 KB
testcase_14 AC 1,166 ms
210,120 KB
testcase_15 AC 914 ms
182,092 KB
testcase_16 AC 1,384 ms
208,828 KB
testcase_17 AC 2,539 ms
273,076 KB
testcase_18 AC 2,277 ms
265,280 KB
testcase_19 AC 2,638 ms
268,380 KB
testcase_20 AC 381 ms
119,328 KB
testcase_21 AC 667 ms
147,316 KB
testcase_22 AC 1,070 ms
204,148 KB
testcase_23 AC 579 ms
135,536 KB
testcase_24 AC 917 ms
170,112 KB
testcase_25 AC 2,426 ms
267,072 KB
testcase_26 AC 2,395 ms
265,436 KB
testcase_27 AC 444 ms
118,144 KB
testcase_28 AC 180 ms
102,400 KB
testcase_29 AC 2,995 ms
265,132 KB
testcase_30 AC 1,559 ms
271,400 KB
testcase_31 AC 291 ms
130,712 KB
testcase_32 TLE -
testcase_33 AC 2,446 ms
271,688 KB
testcase_34 AC 2,473 ms
271,548 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+1)
        for k in range(K):
            l, r, c, h = ope[k]
            bit.add(l, h)
            if r != N:
                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