結果

問題 No.1951 消えたAGCT(2)
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-09-11 01:12:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 549 ms / 3,000 ms
コード長 2,186 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 84,740 KB
最終ジャッジ日時 2024-09-11 01:12:18
合計ジャッジ時間 8,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,632 KB
testcase_01 AC 36 ms
53,432 KB
testcase_02 AC 36 ms
53,620 KB
testcase_03 AC 36 ms
53,280 KB
testcase_04 AC 35 ms
53,144 KB
testcase_05 AC 34 ms
52,212 KB
testcase_06 AC 36 ms
53,484 KB
testcase_07 AC 36 ms
53,068 KB
testcase_08 AC 106 ms
84,116 KB
testcase_09 AC 110 ms
83,780 KB
testcase_10 AC 113 ms
83,784 KB
testcase_11 AC 111 ms
83,784 KB
testcase_12 AC 84 ms
80,856 KB
testcase_13 AC 77 ms
76,028 KB
testcase_14 AC 512 ms
83,872 KB
testcase_15 AC 428 ms
83,236 KB
testcase_16 AC 477 ms
83,220 KB
testcase_17 AC 494 ms
84,740 KB
testcase_18 AC 545 ms
84,352 KB
testcase_19 AC 538 ms
84,288 KB
testcase_20 AC 546 ms
84,548 KB
testcase_21 AC 110 ms
83,988 KB
testcase_22 AC 118 ms
83,724 KB
testcase_23 AC 116 ms
84,088 KB
testcase_24 AC 110 ms
84,168 KB
testcase_25 AC 111 ms
83,948 KB
testcase_26 AC 499 ms
84,252 KB
testcase_27 AC 549 ms
84,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1951

class BinaryIndexTree:
    """
    フェニック木(BinaryIndexTree)の基本的な機能を実装したクラス
    """
    def __init__(self, size):
        self.size = size
        self.array = [0] * (size + 1)
    
    def add(self, x, a):
        index = x
        while index <= self.size:
            self.array[index] += a
            index += index & (-index)
    
    def sum(self, x):
        index = x
        ans = 0
        while index > 0:
            ans += self.array[index]
            index -= index & (-index)
        return ans

    def least_upper_bound(self, value):
        if self.sum(self.size) < value:
            return -1
        elif value <= 0:
            return 0

        m = 1
        while m < self.size:
            m *= 2

        k = 0
        k_sum = 0
        while m > 0:
            k0 = k + m
            if k0 < self.size:
                if k_sum + self.array[k0] < value:
                    k_sum += self.array[k0]
                    k += m
            m //= 2
        if k < self.size:
            return k + 1
        else:
            return -1

def main():
    N = int(input())
    S = input()

    s_array = [ord(s) - ord("A") for s in S]
    total_num = [0] * 26
    shift_num = 0
    for s in s_array:
        total_num[s] += 1

    agct_num = 0
    for s in ("A", "G", "C", "T"):
        agct_num += total_num[ord(s) -ord("A")]
    
    bit = BinaryIndexTree(N)
    for i in range(N):
        bit.add(i + 1, 1)

    count = 0
    while agct_num > 0:
        index = bit.least_upper_bound(agct_num)
        target_s = s_array[index - 1]
        target_s += shift_num
        target_s %= 26

        total_num[target_s] -= 1
        n = total_num[target_s]
        bit.add(index, -1)

        shift_num += n
        shift_num %= 26

        new_total_num = [0] * 26
        for i in range(26):
            new_total_num[(i + n) % 26] = total_num[i]
        total_num = new_total_num

        agct_num = 0
        for s in ("A", "G", "C", "T"):
            agct_num += total_num[ord(s) -ord("A")]
        count += 1
    
    print(count)











if __name__ == "__main__":
    main()
0