結果

問題 No.1471 Sort Queries
ユーザー ntudantuda
提出日時 2024-11-22 21:36:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 951 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,024 KB
最終ジャッジ日時 2024-11-22 21:36:28
合計ジャッジ時間 7,500 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
66,688 KB
testcase_01 AC 73 ms
67,052 KB
testcase_02 AC 64 ms
67,072 KB
testcase_03 AC 79 ms
69,760 KB
testcase_04 AC 71 ms
70,272 KB
testcase_05 AC 66 ms
68,096 KB
testcase_06 AC 65 ms
66,944 KB
testcase_07 AC 68 ms
67,968 KB
testcase_08 AC 75 ms
72,448 KB
testcase_09 AC 68 ms
69,120 KB
testcase_10 AC 67 ms
67,840 KB
testcase_11 AC 72 ms
70,144 KB
testcase_12 AC 72 ms
70,016 KB
testcase_13 AC 124 ms
79,440 KB
testcase_14 AC 122 ms
79,188 KB
testcase_15 AC 137 ms
79,412 KB
testcase_16 AC 132 ms
79,104 KB
testcase_17 AC 118 ms
78,888 KB
testcase_18 AC 111 ms
79,144 KB
testcase_19 AC 122 ms
78,884 KB
testcase_20 AC 135 ms
78,900 KB
testcase_21 AC 118 ms
79,772 KB
testcase_22 AC 115 ms
79,360 KB
testcase_23 AC 158 ms
80,024 KB
testcase_24 AC 156 ms
80,220 KB
testcase_25 AC 190 ms
80,408 KB
testcase_26 AC 160 ms
80,000 KB
testcase_27 AC 163 ms
81,024 KB
testcase_28 AC 165 ms
80,408 KB
testcase_29 AC 160 ms
80,128 KB
testcase_30 AC 146 ms
79,784 KB
testcase_31 AC 180 ms
80,000 KB
testcase_32 AC 191 ms
79,732 KB
testcase_33 AC 182 ms
80,840 KB
testcase_34 AC 196 ms
81,024 KB
testcase_35 AC 190 ms
80,640 KB
testcase_36 AC 160 ms
80,456 KB
testcase_37 AC 156 ms
80,012 KB
testcase_38 AC 150 ms
80,896 KB
testcase_39 AC 157 ms
80,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing
class FenwickTree:
    def __init__(self, n: int = 0) -> None:
        self._n = n
        self.data = [0] * n
    def add(self, p: int, x: typing.Any) -> None:
        assert 0 <= p < self._n
        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p
    def sum(self, left: int, right: int) -> typing.Any:
        assert 0 <= left <= right <= self._n
        return self._sum(right) - self._sum(left)
    def _sum(self, r: int) -> typing.Any:
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r
        return s

N, Q = map(int, input().split())
S = input()
D = [FenwickTree(N) for _ in range(26)]
for i, s in enumerate(S):
    D[ord(s) - 97].add(i, 1)
for _ in range(Q):
    l, r, x = map(int, input().split())
    cnt = 0
    for i in range(26):
        cnt += D[i].sum(l - 1, r)
        if x <= cnt:
            print(chr(97 + i))
            break
0