結果

問題 No.2992 Range ABCD String Query
ユーザー CecilCecil
提出日時 2024-12-17 01:30:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 580 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 339,620 KB
最終ジャッジ日時 2024-12-17 01:33:19
合計ジャッジ時間 166,661 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 500 ms
338,612 KB
testcase_01 AC 505 ms
338,640 KB
testcase_02 AC 650 ms
339,180 KB
testcase_03 AC 573 ms
338,492 KB
testcase_04 AC 747 ms
339,504 KB
testcase_05 AC 534 ms
338,988 KB
testcase_06 AC 756 ms
338,488 KB
testcase_07 AC 475 ms
339,264 KB
testcase_08 AC 790 ms
338,044 KB
testcase_09 AC 546 ms
338,700 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 245 ms
81,540 KB
testcase_26 AC 245 ms
81,396 KB
testcase_27 AC 246 ms
81,772 KB
testcase_28 AC 231 ms
81,268 KB
testcase_29 AC 237 ms
81,488 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 391 ms
77,616 KB
testcase_38 AC 418 ms
78,724 KB
testcase_39 AC 460 ms
79,312 KB
testcase_40 AC 449 ms
339,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
INF = 999
N,Q = map(int, input().split())
S = list(input())
dic = {"A":0,"B":1,"C":2,"D":3}
for i in range(N):
    S[i] = dic[S[i]]

def LIS(L):
    lis = [INF for _ in range(len(L)+1)]
    for l in L:
        lis[bisect.bisect_right(lis,l)] = l
    return len(L)-bisect.bisect_left(lis, INF)

for _ in range(Q):
    query = list(input().split())
    if query[0]=="1":
        x,c = query[1:]
        x = int(x)-1
        S[x] = dic[c]
    else:
        l,r = query[1:]
        l = int(l)
        r = int(r)
        l -= 1
        r -= 1
        print(LIS(S[l:r+1]))
0