結果

問題 No.2858 Make a Palindrome
ユーザー titiatitia
提出日時 2024-09-18 07:06:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,276 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 54,084 KB
最終ジャッジ日時 2024-09-18 07:08:41
合計ジャッジ時間 126,555 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,712 ms
30,524 KB
testcase_23 TLE -
testcase_24 AC 2,863 ms
45,036 KB
testcase_25 AC 2,478 ms
39,780 KB
testcase_26 AC 2,438 ms
37,436 KB
testcase_27 TLE -
testcase_28 AC 2,818 ms
40,792 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

# Manacher
# https://snuke.hatenablog.com/entry/2014/12/02/235837

def maxpan(S2):
    T=[]
    for i in range(len(S2)):
        T.append(S2[i])
        T.append("!")

    T.pop()

    S=T

    LEN=len(S)
    i=0
    j=0
    R=[0]*LEN # 文字 i を中心とする最長の回文の半径

    while i<LEN:
        while i-j>=0 and i+j<LEN and S[i-j]==S[i+j]:
            j+=1
        R[i]=j
        
        k=1
        while i-k>=0 and i+k<LEN and k+R[i-k]<j:
            R[i+k]=R[i-k]
            k+=1

        i+=k
        j-=k

    MAX=0

    #print(R)

    for i in range(LEN):
        if i%2==0:
            if R[i]%2==0:
                MAX=max(MAX,R[i]-1)
            else:
                MAX=max(MAX,R[i])
        else:
            if R[i]%2==1:
                MAX=max(MAX,R[i]-1)
            else:
                MAX=max(MAX,R[i])
            

    return MAX
    


T=int(input())
for tests in range(T):
    N,M=map(int,input().split())
    S=list(input().strip())

    A=[maxpan(S),maxpan(S+S),maxpan(S+S+S),maxpan(S+S+S+S)]

    if A[0]>=M:
        print(1)
        continue

    if A[1]-A[0]==0:
        print(-1)
        continue

    f=A[0]
    plus=A[1]-A[0]

    # f+ plus*(x-1)>=M

    print((M-f+plus-1)//plus+1)
0