結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 391 ms
77,420 KB
testcase_16 WA -
testcase_17 AC 392 ms
77,984 KB
testcase_18 AC 430 ms
77,676 KB
testcase_19 AC 432 ms
77,920 KB
testcase_20 AC 261 ms
84,888 KB
testcase_21 AC 268 ms
85,364 KB
testcase_22 AC 190 ms
89,244 KB
testcase_23 AC 270 ms
84,904 KB
testcase_24 AC 412 ms
84,836 KB
testcase_25 AC 229 ms
95,596 KB
testcase_26 AC 220 ms
92,708 KB
testcase_27 AC 272 ms
86,156 KB
testcase_28 AC 411 ms
84,272 KB
testcase_29 AC 252 ms
85,300 KB
testcase_30 AC 304 ms
86,640 KB
testcase_31 AC 328 ms
86,500 KB
testcase_32 AC 279 ms
86,200 KB
testcase_33 AC 268 ms
86,320 KB
testcase_34 AC 280 ms
86,168 KB
testcase_35 AC 303 ms
86,388 KB
testcase_36 AC 288 ms
86,192 KB
testcase_37 AC 280 ms
86,128 KB
testcase_38 AC 273 ms
86,480 KB
testcase_39 AC 275 ms
86,132 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>=N or pos-n<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+1+left>=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
                b=(N-1-i+1)
                ans=min(ans,-(-(M+a)//N))
                ans=min(ans,-(-(M+b)//N))
    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