結果

問題 No.1982 [Cherry 4th Tune B] 絶険
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-06-17 22:15:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,201 ms / 3,000 ms
コード長 1,661 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 204,020 KB
最終ジャッジ日時 2024-10-09 08:18:48
合計ジャッジ時間 24,924 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 35 ms
52,736 KB
testcase_02 AC 43 ms
64,768 KB
testcase_03 AC 515 ms
129,536 KB
testcase_04 AC 625 ms
136,372 KB
testcase_05 AC 476 ms
125,872 KB
testcase_06 AC 721 ms
147,072 KB
testcase_07 AC 762 ms
157,156 KB
testcase_08 AC 611 ms
137,856 KB
testcase_09 AC 692 ms
149,120 KB
testcase_10 AC 691 ms
146,060 KB
testcase_11 AC 434 ms
119,072 KB
testcase_12 AC 740 ms
150,064 KB
testcase_13 AC 456 ms
124,060 KB
testcase_14 AC 508 ms
134,556 KB
testcase_15 AC 453 ms
123,876 KB
testcase_16 AC 608 ms
138,752 KB
testcase_17 AC 1,032 ms
181,632 KB
testcase_18 AC 877 ms
168,344 KB
testcase_19 AC 963 ms
179,812 KB
testcase_20 AC 269 ms
103,552 KB
testcase_21 AC 342 ms
112,128 KB
testcase_22 AC 524 ms
132,480 KB
testcase_23 AC 341 ms
107,620 KB
testcase_24 AC 425 ms
119,688 KB
testcase_25 AC 940 ms
175,432 KB
testcase_26 AC 956 ms
172,800 KB
testcase_27 AC 246 ms
99,072 KB
testcase_28 AC 461 ms
133,376 KB
testcase_29 AC 922 ms
204,020 KB
testcase_30 AC 710 ms
199,952 KB
testcase_31 AC 485 ms
133,368 KB
testcase_32 AC 1,201 ms
200,120 KB
testcase_33 AC 1,131 ms
199,936 KB
testcase_34 AC 1,107 ms
199,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self, n):
        self.size = n
        self.tree = [0]*(n+1)
 
    def build(self, list):
        self.tree[1:] = list.copy()
        for i in range(self.size+1):
            j = i + (i & (-i))
            if j < self.size+1:
                self.tree[j] += self.tree[i]

    def sum(self, i):
        # [0, i) の要素の総和を返す
        s = 0
        while i>0:
            s += self.tree[i]
            i -= i & -i
        return s
    # 0 index を 1 index に変更  転倒数を求めるなら1を足していく
    def add(self, i, x):
        i += 1
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

    # 総和がx以上になる位置のindex をbinary search
    def bsearch(self,x):
        le = 0
        ri = 1<<(self.size.bit_length()-1)
        while ri > 0:
            if le+ri <= self.size and self.tree[le+ri]<x:
                x -= self.tree[le+ri]
                le += ri
            ri >>= 1
        return le+1

n,k,q = map(int,input().split())
Q = [list(map(int,input().split())) for i in range(k)]
IX = [list(map(int,input().split())) for i in range(q)]

query = [[] for i in range(n+5)]
ans = [-1]*q
bit = BIT(k+5)

for i,(l,r,c,h) in enumerate(Q):
    query[l].append([0,h,i])
for ind,(i,x) in enumerate(IX):
    query[i].append([1,ind,x])
for i,(l,r,c,h) in enumerate(Q):
    query[r].append([0,-h,i])

for i in range(n+5):
    for id,x,y in query[i]:
        if id == 0:
            bit.add(y,x)
        else:
            ind = bit.bsearch(y)
            if ind > k + 1:
                continue
            ans[x] = Q[ind-1][2]
for i in ans:
    print(i)
0