結果

問題 No.1951 消えたAGCT(2)
ユーザー titiatitia
提出日時 2022-05-21 00:07:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,154 ms / 3,000 ms
コード長 1,128 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 94,336 KB
最終ジャッジ日時 2024-09-20 10:31:49
合計ジャッジ時間 12,023 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,888 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 40 ms
53,888 KB
testcase_03 AC 40 ms
53,888 KB
testcase_04 AC 38 ms
54,144 KB
testcase_05 AC 40 ms
53,632 KB
testcase_06 AC 41 ms
53,760 KB
testcase_07 AC 45 ms
54,144 KB
testcase_08 AC 92 ms
86,620 KB
testcase_09 AC 69 ms
82,560 KB
testcase_10 AC 67 ms
82,560 KB
testcase_11 AC 68 ms
82,944 KB
testcase_12 AC 67 ms
75,648 KB
testcase_13 AC 89 ms
76,544 KB
testcase_14 AC 1,028 ms
92,288 KB
testcase_15 AC 823 ms
89,088 KB
testcase_16 AC 901 ms
89,216 KB
testcase_17 AC 1,096 ms
93,696 KB
testcase_18 AC 1,154 ms
92,804 KB
testcase_19 AC 1,085 ms
93,592 KB
testcase_20 AC 1,041 ms
92,996 KB
testcase_21 AC 110 ms
87,936 KB
testcase_22 AC 114 ms
88,704 KB
testcase_23 AC 124 ms
88,832 KB
testcase_24 AC 123 ms
89,088 KB
testcase_25 AC 121 ms
88,576 KB
testcase_26 AC 1,042 ms
94,336 KB
testcase_27 AC 1,045 ms
92,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import Counter

n=int(input())
S=input().strip()

LEN=n+5

BIT=[0]*(LEN+1) # 1-indexedなtree. 配列BITの長さはLEN+1にしていることに注意。

def update(v,w): # index vにwを加える
    while v<=LEN:
        BIT[v]+=w
        v+=(v&(-v)) # v&(-v)で、最も下の立っているビット. 自分を含む大きなノードへ. たとえばv=3→v=4

def getvalue(v): # [1,v]の区間の和を求める
    ANS=0
    while v!=0:
        ANS+=BIT[v]
        v-=(v&(-v)) # 自分より小さい自分の和を構成するノードへ. たとえばv=14→v=12へ
    return ANS


A=[ord(S[i])-65 for i in range(n)]
SA=0

AGCT=[0,2,6,19]

C=Counter(sorted(A))

ANS=0

while True:
    count=0
    for x in AGCT:
        count+=C[(x-SA)%26]

    if count==0:
        print(ANS)
        break
    else:
        ANS+=1

    OK=0
    NG=n

    while NG>OK+1:
        mid=(OK+NG)//2

        if mid-getvalue(mid)>count-1:
            NG=mid
        else:
            OK=mid
            
    update(OK+1,1)
            
    k=A[OK]
    C[k]-=1
    SA+=C[k]
    SA%=26
0