結果

問題 No.1471 Sort Queries
ユーザー ygd.ygd.
提出日時 2021-04-09 23:26:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 965 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 84,616 KB
最終ジャッジ日時 2024-06-25 07:23:58
合計ジャッジ時間 18,953 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,600 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 AC 47 ms
61,032 KB
testcase_04 AC 47 ms
59,520 KB
testcase_05 AC 40 ms
52,736 KB
testcase_06 AC 38 ms
52,864 KB
testcase_07 AC 42 ms
52,736 KB
testcase_08 AC 48 ms
61,824 KB
testcase_09 AC 43 ms
58,312 KB
testcase_10 AC 38 ms
52,864 KB
testcase_11 AC 45 ms
59,264 KB
testcase_12 AC 49 ms
62,976 KB
testcase_13 AC 337 ms
76,692 KB
testcase_14 AC 290 ms
76,628 KB
testcase_15 AC 487 ms
76,800 KB
testcase_16 AC 165 ms
76,672 KB
testcase_17 AC 264 ms
76,672 KB
testcase_18 AC 200 ms
76,544 KB
testcase_19 AC 184 ms
76,724 KB
testcase_20 AC 485 ms
76,928 KB
testcase_21 AC 272 ms
76,544 KB
testcase_22 AC 237 ms
77,020 KB
testcase_23 AC 989 ms
77,312 KB
testcase_24 AC 946 ms
77,164 KB
testcase_25 AC 1,481 ms
77,696 KB
testcase_26 AC 853 ms
77,952 KB
testcase_27 AC 1,311 ms
77,084 KB
testcase_28 AC 1,311 ms
77,056 KB
testcase_29 AC 837 ms
77,440 KB
testcase_30 AC 859 ms
76,800 KB
testcase_31 AC 1,371 ms
77,696 KB
testcase_32 AC 1,152 ms
77,624 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self, n):
        self.n = n
        self.data = [0]*(n+1)
 
    def to_sum(self, i):
        s = 0
        while i > 0:
            s += self.data[i]
            i -= (i & -i)
        return s
 
    def add(self, i, x):
        while i <= self.n:
            self.data[i] += x
            i += (i & -i)
 
    def get(self, i, j):
        return self.to_sum(j)-self.to_sum(i-1)

N,Q = map(int,input().split())
S = str(input())
SL = []
for i in range(N):
    SL.append(ord(S[i])-96) #1index
#print(SL)
for i in range(Q):
    l,r,x = map(int,input().split())
    l-=1;r-=1
    Tree = BIT(28)
    for j in range(l,r+1):
        num = SL[j]
        Tree.add(num,1)
    if Tree.get(1,1) >= x:
        print("a")
        continue
    ok = 28
    ng = 1
    while abs(ok-ng) > 1:
        mid = (ok+ng)//2
        if Tree.get(1,mid) >= x:
            ok = mid
        else:
            ng = mid
    #print(ok)
    ans = chr(ok+96)
    print(ans)
0