結果

問題 No.2858 Make a Palindrome
ユーザー nikoro256nikoro256
提出日時 2024-08-25 16:23:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,180 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 95,476 KB
最終ジャッジ日時 2024-08-25 16:23:35
合計ジャッジ時間 18,355 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 423 ms
78,016 KB
testcase_09 WA -
testcase_10 AC 456 ms
79,056 KB
testcase_11 AC 427 ms
78,580 KB
testcase_12 AC 424 ms
78,984 KB
testcase_13 AC 426 ms
78,796 KB
testcase_14 AC 409 ms
78,480 KB
testcase_15 AC 424 ms
77,316 KB
testcase_16 AC 431 ms
78,184 KB
testcase_17 AC 436 ms
77,864 KB
testcase_18 AC 457 ms
78,124 KB
testcase_19 AC 465 ms
78,060 KB
testcase_20 AC 278 ms
85,188 KB
testcase_21 AC 281 ms
85,072 KB
testcase_22 AC 200 ms
89,376 KB
testcase_23 AC 275 ms
84,832 KB
testcase_24 AC 434 ms
85,012 KB
testcase_25 AC 261 ms
95,476 KB
testcase_26 AC 236 ms
92,460 KB
testcase_27 AC 299 ms
86,408 KB
testcase_28 AC 453 ms
84,232 KB
testcase_29 AC 282 ms
85,248 KB
testcase_30 AC 321 ms
86,472 KB
testcase_31 AC 352 ms
86,240 KB
testcase_32 AC 317 ms
86,444 KB
testcase_33 AC 302 ms
86,200 KB
testcase_34 AC 306 ms
86,512 KB
testcase_35 AC 309 ms
86,732 KB
testcase_36 AC 335 ms
86,572 KB
testcase_37 AC 314 ms
86,472 KB
testcase_38 AC 306 ms
86,256 KB
testcase_39 AC 313 ms
86,444 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)
                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