結果

問題 No.1471 Sort Queries
ユーザー 小野寺健小野寺健
提出日時 2021-04-25 15:46:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,096 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-07-04 09:29:00
合計ジャッジ時間 29,496 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 31 ms
11,008 KB
testcase_05 AC 30 ms
11,008 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 33 ms
10,880 KB
testcase_09 AC 30 ms
11,008 KB
testcase_10 AC 30 ms
11,008 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 36 ms
10,880 KB
testcase_13 AC 421 ms
13,056 KB
testcase_14 AC 385 ms
12,288 KB
testcase_15 AC 663 ms
13,184 KB
testcase_16 AC 301 ms
11,648 KB
testcase_17 AC 312 ms
12,928 KB
testcase_18 AC 217 ms
12,160 KB
testcase_19 AC 335 ms
11,648 KB
testcase_20 AC 690 ms
13,184 KB
testcase_21 AC 353 ms
12,288 KB
testcase_22 AC 291 ms
12,160 KB
testcase_23 AC 993 ms
13,952 KB
testcase_24 AC 965 ms
14,080 KB
testcase_25 AC 1,512 ms
15,360 KB
testcase_26 AC 1,080 ms
13,568 KB
testcase_27 AC 1,239 ms
15,488 KB
testcase_28 AC 1,261 ms
15,616 KB
testcase_29 AC 1,046 ms
13,696 KB
testcase_30 AC 958 ms
13,824 KB
testcase_31 AC 1,569 ms
14,208 KB
testcase_32 AC 1,617 ms
13,952 KB
testcase_33 TLE -
testcase_34 AC 1,986 ms
16,128 KB
testcase_35 AC 1,950 ms
16,000 KB
testcase_36 AC 225 ms
15,744 KB
testcase_37 AC 224 ms
15,744 KB
testcase_38 TLE -
testcase_39 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

N, Q = map(int, input().split())

A = list(input())

I = []
J = []
K = []

for _ in range(Q):
    l, r, x = map(int, input().split())
    I.append(l)
    J.append(r)
    K.append(x)
    
n = 1
while n < N:
    n *= 2
    
dat = [[] for _ in range(n*2)]
    
def init(k, l, r):
    if r - l == 1:
        dat[k].append(A[l])
    else:
        lch = k * 2 + 1
        rch = k * 2 + 2
        init(lch, l, (l+r)//2)
        init(rch, (l+r)//2, r)
        dat[k] = sorted(dat[lch] + dat[rch])

def query(i, j, x, k, l, r):
    if j <= l or r <= i:
        return 0
    elif i <= l and r <= j:
        return bisect.bisect_right(dat[k], x)
    else:
        lc = query(i, j, x, k * 2 + 1, l, (l+r)//2)
        rc = query(i, j, x, k * 2 + 2, (l+r)//2, r)
        return lc + rc
    
nums = sorted(A)

init(0, 0, N)

for i in range(Q):
    l = I[i] - 1
    r = J[i]
    k = K[i]
    lb, ub = -1, N - 1
    while ub - lb > 1:
        md = (ub + lb) // 2
        c = query(l, r, nums[md], 0, 0, N)
        if c >= k:
            ub = md
        else:
            lb = md
    print(nums[ub])
0