結果

問題 No.1982 [Cherry 4th Tune B] 絶険
ユーザー pitPpitP
提出日時 2022-06-19 08:28:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,344 ms / 3,000 ms
コード長 2,088 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 222,464 KB
最終ジャッジ日時 2024-10-11 04:59:11
合計ジャッジ時間 26,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 56 ms
64,256 KB
testcase_03 AC 555 ms
139,776 KB
testcase_04 AC 642 ms
148,992 KB
testcase_05 AC 524 ms
133,376 KB
testcase_06 AC 718 ms
159,120 KB
testcase_07 AC 828 ms
169,728 KB
testcase_08 AC 621 ms
149,652 KB
testcase_09 AC 728 ms
160,124 KB
testcase_10 AC 724 ms
157,528 KB
testcase_11 AC 440 ms
125,396 KB
testcase_12 AC 756 ms
164,580 KB
testcase_13 AC 465 ms
134,604 KB
testcase_14 AC 515 ms
145,636 KB
testcase_15 AC 454 ms
133,816 KB
testcase_16 AC 638 ms
146,140 KB
testcase_17 AC 1,235 ms
199,836 KB
testcase_18 AC 981 ms
183,484 KB
testcase_19 AC 1,110 ms
197,376 KB
testcase_20 AC 241 ms
106,556 KB
testcase_21 AC 329 ms
116,316 KB
testcase_22 AC 514 ms
144,352 KB
testcase_23 AC 311 ms
112,284 KB
testcase_24 AC 414 ms
127,960 KB
testcase_25 AC 1,006 ms
194,168 KB
testcase_26 AC 1,006 ms
190,200 KB
testcase_27 AC 253 ms
101,572 KB
testcase_28 AC 483 ms
144,000 KB
testcase_29 AC 987 ms
222,460 KB
testcase_30 AC 655 ms
207,428 KB
testcase_31 AC 501 ms
145,764 KB
testcase_32 AC 1,344 ms
222,464 KB
testcase_33 AC 1,154 ms
220,704 KB
testcase_34 AC 1,162 ms
220,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

#先頭からのsum,addをO(logN)
class Fenwick_Tree:
    def __init__(self, n):
        self._n = n  # 要素数
        self.data = [0] * n
        self.depth = n.bit_length()

    def add(self, p, x):
        assert 0 <= p < self._n
        p += 1  # 0-indexed -> 1-indexed
        while p <= self._n:
            self.data[p - 1] += x # dataを更新
            p += p & -p  # pにLSB(p)を加算,data[i]の長さを示す
    
    def _sum(self, r):#s = a0+a1+...+a[r-1] or 0
        s = 0  # 総和を入れる変数
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r  # rからLSB(r)を減算
        return s
    
    def sum(self, l, r):#[l,r)の総和
        assert 0 <= l <= r <= self._n
        return self._sum(r) - self._sum(l)

    def bisect_l(self,x): #wa >= xとなる最小のidx
        pos = 0 ; wa = 0
        for i in range(self.depth+1,-1,-1):
            k = pos + (1<<i)
            if k <= self._n and wa + self.data[k-1] < x:
                wa += self.data[k-1]
                pos += (1<<i)
        return pos 
    
    def bisect_r(self,x): #wa >= xとなる最大のidx
        if x < 0 : return 0
        pos = 0 ; wa = 0
        for i in range(self.depth+1,-1,-1):
            k = pos + (1 << i)
            if k <= self._n and wa + self.data[k-1] <= x:
                wa += self.data[k-1]
                pos += (1<<i)
        return pos

n,k,q = map(int,input().split())
lrch = [list(map(int,input().split())) for _ in range(k)]
ix = [list(map(int,input().split())) for _ in range(q)]

Q = [[] for _ in range(n+2)]
for idx , (l,_,_,h) in enumerate(lrch):
    Q[l].append([True,h,idx])
for ans_idx , (i,x) in enumerate(ix):
    Q[i].append([False,ans_idx,x])
for idx , (_,r,_,h) in enumerate(lrch):
    Q[r].append([True,-h,idx])


ans = [-1] * q
fw = Fenwick_Tree(k+2)
for i in range(n+2):
    for boo,x,y in Q[i]:
        if boo : fw.add(y,x)
        else :
            idx = fw.bisect_l(y)
            if idx >= k : continue
            ans[x] = lrch[idx][2]

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