結果
問題 | No.2858 Make a Palindrome |
ユーザー | nikoro256 |
提出日時 | 2024-08-25 16:29:42 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,180 bytes |
コンパイル時間 | 208 ms |
コンパイル使用メモリ | 82,384 KB |
実行使用メモリ | 95,472 KB |
最終ジャッジ日時 | 2024-08-25 16:30:04 |
合計ジャッジ時間 | 17,305 ms |
ジャッジサーバーID (参考情報) |
judge3 / 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 | 386 ms
78,136 KB |
testcase_09 | WA | - |
testcase_10 | AC | 412 ms
79,428 KB |
testcase_11 | AC | 404 ms
78,584 KB |
testcase_12 | AC | 380 ms
78,988 KB |
testcase_13 | AC | 409 ms
78,544 KB |
testcase_14 | AC | 367 ms
78,480 KB |
testcase_15 | AC | 387 ms
77,444 KB |
testcase_16 | AC | 423 ms
78,184 KB |
testcase_17 | AC | 399 ms
77,612 KB |
testcase_18 | AC | 413 ms
78,152 KB |
testcase_19 | AC | 431 ms
78,196 KB |
testcase_20 | AC | 254 ms
85,044 KB |
testcase_21 | AC | 261 ms
84,936 KB |
testcase_22 | AC | 180 ms
89,372 KB |
testcase_23 | AC | 255 ms
85,020 KB |
testcase_24 | AC | 429 ms
84,760 KB |
testcase_25 | AC | 232 ms
95,472 KB |
testcase_26 | AC | 225 ms
92,440 KB |
testcase_27 | AC | 278 ms
86,232 KB |
testcase_28 | AC | 424 ms
84,284 KB |
testcase_29 | AC | 266 ms
85,488 KB |
testcase_30 | AC | 300 ms
86,688 KB |
testcase_31 | AC | 301 ms
86,232 KB |
testcase_32 | AC | 308 ms
86,520 KB |
testcase_33 | AC | 287 ms
86,216 KB |
testcase_34 | AC | 281 ms
86,268 KB |
testcase_35 | AC | 283 ms
86,680 KB |
testcase_36 | AC | 315 ms
86,192 KB |
testcase_37 | AC | 284 ms
86,360 KB |
testcase_38 | AC | 290 ms
86,680 KB |
testcase_39 | AC | 287 ms
86,820 KB |
ソースコード
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+1 and M>=N-1-i: 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)