結果

問題 No.2858 Make a Palindrome
ユーザー nikoro256nikoro256
提出日時 2024-08-25 16:21:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,182 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 95,468 KB
最終ジャッジ日時 2024-08-25 16:22:03
合計ジャッジ時間 17,999 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
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 AC 390 ms
77,328 KB
testcase_16 WA -
testcase_17 AC 404 ms
77,608 KB
testcase_18 AC 416 ms
77,872 KB
testcase_19 AC 426 ms
78,428 KB
testcase_20 AC 258 ms
84,956 KB
testcase_21 AC 268 ms
85,540 KB
testcase_22 AC 188 ms
89,592 KB
testcase_23 AC 255 ms
85,092 KB
testcase_24 AC 431 ms
84,888 KB
testcase_25 AC 230 ms
95,468 KB
testcase_26 AC 217 ms
92,440 KB
testcase_27 AC 287 ms
86,216 KB
testcase_28 AC 434 ms
84,164 KB
testcase_29 AC 264 ms
85,304 KB
testcase_30 AC 299 ms
86,644 KB
testcase_31 AC 303 ms
86,264 KB
testcase_32 AC 298 ms
86,476 KB
testcase_33 AC 282 ms
86,404 KB
testcase_34 AC 302 ms
86,336 KB
testcase_35 AC 292 ms
86,504 KB
testcase_36 AC 307 ms
86,680 KB
testcase_37 AC 283 ms
86,252 KB
testcase_38 AC 279 ms
86,644 KB
testcase_39 AC 288 ms
86,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class StrHash():
    def __init__(self,S):
        self.mod = 10**9+7
        Len=len(S)
        self.Power256 = [1] * (Len + 1)
        for i in range(Len):
             self.Power256[i + 1] = self.Power256[i] * 256 % self.mod
        S=[ord(S[i]) for i in range(Len)]
        self.H = [1] * (Len + 1)
        for i in range(Len):
            self.H[i + 1] = (self.H[i] * 256 + S[i]) % self.mod
    def getHash(self,l,r):
        if l>r:
            return 0
        return (self.H[r]-(self.Power256[r-l+1]*self.H[l-1]))%self.mod

def isok(pos,n):
    if pos+n+1>N or pos-n+1<=0:
        return False
    if sh.getHash(pos-n+1,pos+n+1) == sh_rev.getHash(N-1-(pos+n)+1,N-1-(pos-n)+1):
        return True
    return False

def isok2(pos,n):
    if pos-n+1<=0 or pos+n>N:
        return False
    if sh.getHash(pos-n+1,pos+n) == sh_rev.getHash(N+1-(pos+n),N+1-(pos-n+1)):
        return True
    return False

def is_r(l,r):
    if sh.getHash(l+1,r+1) == sh_rev.getHash(N+1-(r+1),N+1-(l+1)):
        return True
    return False

T=int(input())
for _ in range(T):
    N,M=map(int,input().split())
    S=input()
    sh=StrHash(S)
    sh_rev=StrHash(S[::-1])
    ans=10**20
    for i in range(N):
        left,right=0,10**10
        while right-left>1:
            mid=(right+left)//2
            if isok(i,mid):
                left=mid
            else:
                right=mid
        if left+1+left>=M:
            ans=1
            continue
    for i in range(1,N):
        left,right=0,10**10
        while right-left>1:
            mid=(right+left)//2
            if isok2(i,mid):
                left=mid
            else:
                right=mid
        if left*2>=M:
            ans=1
            continue
    for i in range(N-1):
        if is_r(0,i) and is_r(i+1,N-1):
            if M>=i and M>=N-1-i+1:
                a=i+1
                b=(N-1-i+1)
                ans=min(ans,-(-(M+a)//N))
                ans=min(ans,-(-(M+b)//N))
    #print(ans)
    for i in range(N-1):
        if is_r(0,N-1):
            if M<=N:
                ans=1
            else:
                ans=min(ans,-(-M//N))
    if ans==10**20:
        print(-1)
    else:
        print(ans)
0