結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー meruuu61779999meruuu61779999
提出日時 2023-06-17 13:21:56
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 2,597 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 156,172 KB
最終ジャッジ日時 2024-06-25 04:22:59
合計ジャッジ時間 24,952 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,656 KB
testcase_01 AC 41 ms
54,784 KB
testcase_02 AC 44 ms
55,424 KB
testcase_03 AC 558 ms
78,556 KB
testcase_04 AC 235 ms
78,396 KB
testcase_05 AC 192 ms
78,528 KB
testcase_06 AC 856 ms
78,772 KB
testcase_07 AC 788 ms
78,636 KB
testcase_08 AC 736 ms
78,488 KB
testcase_09 AC 759 ms
78,364 KB
testcase_10 AC 854 ms
78,508 KB
testcase_11 AC 724 ms
78,740 KB
testcase_12 AC 849 ms
78,768 KB
testcase_13 AC 863 ms
78,768 KB
testcase_14 AC 863 ms
78,644 KB
testcase_15 AC 806 ms
79,028 KB
testcase_16 AC 421 ms
78,572 KB
testcase_17 AC 510 ms
78,588 KB
testcase_18 AC 864 ms
78,644 KB
testcase_19 AC 858 ms
78,652 KB
testcase_20 AC 862 ms
78,764 KB
testcase_21 AC 860 ms
78,760 KB
testcase_22 AC 861 ms
79,276 KB
testcase_23 AC 868 ms
78,872 KB
testcase_24 AC 869 ms
78,396 KB
testcase_25 AC 884 ms
78,480 KB
testcase_26 AC 877 ms
78,508 KB
testcase_27 AC 622 ms
79,168 KB
testcase_28 AC 884 ms
79,160 KB
testcase_29 AC 868 ms
78,736 KB
testcase_30 RE -
testcase_31 AC 47 ms
54,912 KB
testcase_32 AC 887 ms
155,720 KB
testcase_33 AC 853 ms
78,388 KB
testcase_34 AC 47 ms
54,528 KB
testcase_35 AC 914 ms
156,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

"""RollingHash

・つかい方
    rh = RollingHash(S): インスタンス生成
    rh.get(l, r): hash(S[l, r))

・めも
    1つ目のインスタンス生成で係数cfを決めてしまうから、
    たくさんインスタンスつくっても整合性がとれてる。

・参考URL
    https://qiita.com/keymoon/items/11fac5627672a6d6a9f6
"""


class RollingHash:
    def __init__(self, S: str):
        le = len(S)
        if RConst.cf == 0:
            RConst.cf = random.randrange(1 << 31, RConst.Mod)
        if len(RConst.rui_cf) < le:
            RConst.make_rui_cf(le)
        self.hash_arr = [1]
        for el in S:
            self.hash_arr.append(RConst.calc_mod(
                RConst.mul(self.hash_arr[-1], RConst.cf) + ord(el)))

    def get(self, l: int, r: int) -> int:
        "hash(S[l..r))"
        return RConst.sub(self.hash_arr[r],
                          RConst.mul(self.hash_arr[l], RConst.rui_cf[r - l]))


class RConst:
    Mask30 = (1 << 30) - 1
    Mask31 = (1 << 31) - 1
    Mod = (1 << 61) - 1
    cf = 0
    rui_cf = [1]

    @staticmethod
    def calc_mod(x: int) -> int:
        xu, xd = x >> 61, x & RConst.Mod
        ret = xu + xd
        if RConst.Mod <= ret:
            ret -= RConst.Mod
        return ret

    @staticmethod
    def sub(a: int, b: int) -> int:
        if a < b:
            return a + RConst.Mod - b
        return a - b

    @staticmethod
    def mul(a: int, b: int) -> int:
        au, ad = a >> 31, a & RConst.Mask31
        bu, bd = b >> 31, b & RConst.Mask31
        mid = ad * bu + au * bd
        midu, midd = mid >> 30, mid & RConst.Mask30
        return RConst.calc_mod(((au * bu) << 1) + midu + (midd << 31) + ad * bd)

    @staticmethod
    def make_rui_cf(x: int):
        l = len(RConst.rui_cf)
        for _ in range(x - l + 1):
            RConst.rui_cf.append(RConst.mul(RConst.cf, RConst.rui_cf[-1]))


def main():
    S = input()

    N = len(S)
    S_rev = S[::-1]
    rh = RollingHash(S)
    rh_rev = RollingHash(S_rev)

    def is_palindrome(l, r):
        return rh.get(l, r) == rh_rev.get(N - r, N - l)

    G = [[] for _ in range(N + 1)]
    for i in range(N):
        for j in range(i + 1, N + 1):
            if is_palindrome(i, j):
                G[i].append(j)

    score = [0] * (N + 1)
    score[0] = 1 << 30
    for i in range(N):
        before_score = score[i]
        for ni in G[i]:
            length = ni - i
            new_score = min(length, before_score)
            score[ni] = max(score[ni], new_score)
    print(score[-1])


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