結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,456 ms
10,752 KB
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 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1,158 ms
11,444 KB
testcase_19 WA -
testcase_20 AC 1,060 ms
29,216 KB
testcase_21 AC 1,053 ms
29,304 KB
testcase_22 AC 569 ms
20,596 KB
testcase_23 AC 1,046 ms
29,344 KB
testcase_24 AC 914 ms
27,096 KB
testcase_25 AC 800 ms
26,096 KB
testcase_26 AC 773 ms
25,460 KB
testcase_27 AC 1,172 ms
31,452 KB
testcase_28 AC 925 ms
26,648 KB
testcase_29 AC 1,094 ms
30,000 KB
testcase_30 AC 1,161 ms
31,492 KB
testcase_31 AC 1,185 ms
31,644 KB
testcase_32 AC 1,188 ms
31,540 KB
testcase_33 AC 1,187 ms
31,564 KB
testcase_34 AC 1,183 ms
31,420 KB
testcase_35 AC 1,185 ms
31,700 KB
testcase_36 AC 1,185 ms
31,632 KB
testcase_37 AC 1,182 ms
31,356 KB
testcase_38 AC 1,188 ms
31,568 KB
testcase_39 AC 1,171 ms
31,480 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)]

    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