結果

問題 No.1471 Sort Queries
ユーザー 萩3萩3
提出日時 2021-05-02 18:09:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,330 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,480 KB
最終ジャッジ日時 2024-07-21 03:15:52
合計ジャッジ時間 14,714 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,248 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 40 ms
52,864 KB
testcase_04 AC 41 ms
52,992 KB
testcase_05 AC 39 ms
52,736 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 38 ms
52,804 KB
testcase_08 AC 44 ms
53,120 KB
testcase_09 AC 39 ms
52,608 KB
testcase_10 AC 39 ms
52,480 KB
testcase_11 AC 39 ms
53,376 KB
testcase_12 AC 41 ms
53,120 KB
testcase_13 AC 295 ms
78,592 KB
testcase_14 AC 246 ms
78,080 KB
testcase_15 AC 374 ms
79,284 KB
testcase_16 AC 191 ms
77,056 KB
testcase_17 AC 209 ms
77,952 KB
testcase_18 AC 165 ms
78,036 KB
testcase_19 AC 198 ms
77,296 KB
testcase_20 AC 373 ms
79,340 KB
testcase_21 AC 231 ms
78,208 KB
testcase_22 AC 204 ms
78,336 KB
testcase_23 AC 597 ms
82,340 KB
testcase_24 AC 589 ms
82,560 KB
testcase_25 AC 877 ms
84,480 KB
testcase_26 AC 557 ms
81,140 KB
testcase_27 AC 782 ms
84,224 KB
testcase_28 AC 768 ms
84,224 KB
testcase_29 AC 550 ms
80,768 KB
testcase_30 AC 568 ms
81,536 KB
testcase_31 AC 838 ms
83,228 KB
testcase_32 AC 739 ms
81,572 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def resolve():
    readline = sys.stdin.readline
    n,q = map(int,readline().split())
    cs = [[c] for c in readline().strip()]
    seg = SegTree(cs)
    for _ in range(q):
        l,r,x = map(int,readline().split())
        print(seg.fold(l-1,r)[x-1])

class SegTree:
    """
    reffered to 'maspy', noncommutative operation is available
    X_f = min, X_unit = INF
    X_f = max, X_unit = -INF
    X_f = sum, X_unit = 0
    X_f = lambda _,a,b: a+b, X_unit = ''
    """
    X_f = lambda _,a,b:sorted(a+b)

    def __init__(self, seq):
        l = list(seq)
        self.N = len(l)
        self.X = [[] for _ in range(self.N)] + l
        for i in range(self.N - 1, 0, -1):
            self.X[i] = self.X_f(self.X[i << 1], self.X[i << 1 | 1])

    def set_val(self, i, x):
        i += self.N
        self.X[i] = x
        while i > 1:
            i >>= 1
            self.X[i] = self.X_f(self.X[i << 1], self.X[i << 1 | 1])

    def fold(self, L, R):#[L,R)
        L += self.N
        R += self.N
        vL = []
        vR = []
        while L < R:
            if L & 1:
                vL = self.X_f(vL, self.X[L])
                L += 1
            if R & 1:
                R -= 1
                vR = self.X_f(self.X[R], vR)
            L >>= 1
            R >>= 1
        return self.X_f(vL, vR)


resolve()
0