結果
問題 | No.1471 Sort Queries |
ユーザー | 萩3 |
提出日時 | 2021-05-02 19:48:57 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 200 ms / 2,000 ms |
コード長 | 1,513 bytes |
コンパイル時間 | 772 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 86,400 KB |
最終ジャッジ日時 | 2024-07-21 05:00:25 |
合計ジャッジ時間 | 7,272 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
53,760 KB |
testcase_01 | AC | 42 ms
53,632 KB |
testcase_02 | AC | 42 ms
54,016 KB |
testcase_03 | AC | 51 ms
61,568 KB |
testcase_04 | AC | 50 ms
61,440 KB |
testcase_05 | AC | 50 ms
60,544 KB |
testcase_06 | AC | 45 ms
58,496 KB |
testcase_07 | AC | 49 ms
60,544 KB |
testcase_08 | AC | 52 ms
62,336 KB |
testcase_09 | AC | 50 ms
61,056 KB |
testcase_10 | AC | 49 ms
60,416 KB |
testcase_11 | AC | 49 ms
61,184 KB |
testcase_12 | AC | 50 ms
61,952 KB |
testcase_13 | AC | 130 ms
80,128 KB |
testcase_14 | AC | 129 ms
79,488 KB |
testcase_15 | AC | 150 ms
80,256 KB |
testcase_16 | AC | 123 ms
77,696 KB |
testcase_17 | AC | 120 ms
79,488 KB |
testcase_18 | AC | 116 ms
79,104 KB |
testcase_19 | AC | 124 ms
77,952 KB |
testcase_20 | AC | 134 ms
79,872 KB |
testcase_21 | AC | 122 ms
79,488 KB |
testcase_22 | AC | 131 ms
79,488 KB |
testcase_23 | AC | 163 ms
83,456 KB |
testcase_24 | AC | 161 ms
83,712 KB |
testcase_25 | AC | 180 ms
84,480 KB |
testcase_26 | AC | 163 ms
81,536 KB |
testcase_27 | AC | 181 ms
86,088 KB |
testcase_28 | AC | 172 ms
85,248 KB |
testcase_29 | AC | 155 ms
81,264 KB |
testcase_30 | AC | 157 ms
83,328 KB |
testcase_31 | AC | 184 ms
83,072 KB |
testcase_32 | AC | 185 ms
81,408 KB |
testcase_33 | AC | 200 ms
86,272 KB |
testcase_34 | AC | 199 ms
86,272 KB |
testcase_35 | AC | 186 ms
86,400 KB |
testcase_36 | AC | 157 ms
85,888 KB |
testcase_37 | AC | 159 ms
86,064 KB |
testcase_38 | AC | 193 ms
86,272 KB |
testcase_39 | AC | 182 ms
86,144 KB |
ソースコード
import collections import sys def resolve(): readline = sys.stdin.readline n,q = map(int,readline().split()) s = readline().strip() seg = SegTree(s) deq = collections.deque() orda = ord('a') for i in range(q): l,r,x = map(int,readline().split()) result = 0 for chrid, chrsum in enumerate(seg.fold(l-1,r),orda): result += chrsum if x <= result: deq.append(chr(chrid)) break print(*deq,sep='\n') 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 = '' """ orda = ord('a') X_f = lambda _,a,b:[ai+bi for ai,bi in zip(a,b)] def __init__(self, string): self.N = len(string) self.X = [[0]*26 for _ in range(self.N*2)] for i, c in enumerate(string,self.N): self.X[i][ord(c)-self.orda] = 1 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 fold(self, L, R):#[L,R) L += self.N R += self.N vL = [0]*26 vR = [0]*26 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()