結果

問題 No.2858 Make a Palindrome
ユーザー titiatitia
提出日時 2024-09-18 07:11:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,364 ms / 3,000 ms
コード長 1,311 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 45,644 KB
最終ジャッジ日時 2024-09-18 07:13:14
合計ジャッジ時間 83,862 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,347 ms
10,752 KB
testcase_01 AC 1,834 ms
10,880 KB
testcase_02 AC 1,850 ms
10,752 KB
testcase_03 AC 1,839 ms
11,008 KB
testcase_04 AC 1,845 ms
10,752 KB
testcase_05 AC 1,787 ms
10,752 KB
testcase_06 AC 1,650 ms
11,008 KB
testcase_07 AC 1,664 ms
11,008 KB
testcase_08 AC 1,646 ms
11,136 KB
testcase_09 AC 1,658 ms
11,136 KB
testcase_10 AC 1,661 ms
10,880 KB
testcase_11 AC 1,667 ms
11,008 KB
testcase_12 AC 1,652 ms
10,752 KB
testcase_13 AC 1,642 ms
11,008 KB
testcase_14 AC 1,669 ms
10,880 KB
testcase_15 AC 2,244 ms
11,360 KB
testcase_16 AC 2,250 ms
11,704 KB
testcase_17 AC 2,274 ms
11,408 KB
testcase_18 AC 2,275 ms
11,552 KB
testcase_19 AC 2,241 ms
11,556 KB
testcase_20 AC 2,005 ms
41,232 KB
testcase_21 AC 2,083 ms
42,100 KB
testcase_22 AC 1,108 ms
26,844 KB
testcase_23 AC 2,105 ms
41,256 KB
testcase_24 AC 1,822 ms
37,712 KB
testcase_25 AC 1,592 ms
34,232 KB
testcase_26 AC 1,543 ms
32,820 KB
testcase_27 AC 2,304 ms
44,896 KB
testcase_28 AC 1,774 ms
35,608 KB
testcase_29 AC 2,132 ms
42,192 KB
testcase_30 AC 2,320 ms
45,508 KB
testcase_31 AC 2,364 ms
45,644 KB
testcase_32 AC 2,330 ms
45,336 KB
testcase_33 AC 2,354 ms
45,336 KB
testcase_34 AC 2,320 ms
45,524 KB
testcase_35 AC 2,318 ms
45,524 KB
testcase_36 AC 2,325 ms
45,436 KB
testcase_37 AC 2,282 ms
45,460 KB
testcase_38 AC 2,327 ms
45,564 KB
testcase_39 AC 2,307 ms
45,368 KB
権限があれば一括ダウンロードができます

ソースコード

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)]

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

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

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

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

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

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