結果

問題 No.2858 Make a Palindrome
ユーザー mkawa2mkawa2
提出日時 2024-08-25 15:19:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 304 ms / 3,000 ms
コード長 1,961 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 109,296 KB
最終ジャッジ日時 2024-08-25 15:19:22
合計ジャッジ時間 8,484 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
78,720 KB
testcase_01 AC 279 ms
78,880 KB
testcase_02 AC 228 ms
78,332 KB
testcase_03 AC 252 ms
78,420 KB
testcase_04 AC 244 ms
78,528 KB
testcase_05 AC 192 ms
77,652 KB
testcase_06 AC 225 ms
78,028 KB
testcase_07 AC 187 ms
78,036 KB
testcase_08 AC 199 ms
78,056 KB
testcase_09 AC 195 ms
78,084 KB
testcase_10 AC 191 ms
78,704 KB
testcase_11 AC 193 ms
77,888 KB
testcase_12 AC 210 ms
77,508 KB
testcase_13 AC 190 ms
77,656 KB
testcase_14 AC 199 ms
78,504 KB
testcase_15 AC 124 ms
76,444 KB
testcase_16 AC 128 ms
77,672 KB
testcase_17 AC 127 ms
76,344 KB
testcase_18 AC 131 ms
76,584 KB
testcase_19 AC 137 ms
76,172 KB
testcase_20 AC 120 ms
104,720 KB
testcase_21 AC 116 ms
105,352 KB
testcase_22 AC 81 ms
83,244 KB
testcase_23 AC 127 ms
105,088 KB
testcase_24 AC 114 ms
101,440 KB
testcase_25 AC 99 ms
89,328 KB
testcase_26 AC 97 ms
86,328 KB
testcase_27 AC 122 ms
108,744 KB
testcase_28 AC 114 ms
100,288 KB
testcase_29 AC 135 ms
106,648 KB
testcase_30 AC 134 ms
109,048 KB
testcase_31 AC 131 ms
109,080 KB
testcase_32 AC 126 ms
109,076 KB
testcase_33 AC 130 ms
109,128 KB
testcase_34 AC 130 ms
109,296 KB
testcase_35 AC 127 ms
108,916 KB
testcase_36 AC 125 ms
109,160 KB
testcase_37 AC 137 ms
109,064 KB
testcase_38 AC 127 ms
108,880 KB
testcase_39 AC 121 ms
109,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

# 偶数長、奇数長含めて回文「直径」(つまり全長)を返す
# s[i]の前の隙間を中心とした回文長がres[i*2](偶数長)
# s[i]を中心とした回文長がres[i*2+1](奇数長)
#  a b a a b a
# 0103016103010
# dummyがsに入っていないか注意
def Manacher(s):
    dummy="@"
    s = dummy + dummy.join(s) + dummy
    i=j=0
    res=[-1]*len(s)
    while i<len(s):
        while i-j>=0 and i+j<len(s) and s[i-j]==s[i+j]:j+=1
        res[i]=j-1
        k=1
        while i-k>=0 and k+res[i-k]+1<j:
            res[i+k]=res[i-k]
            k+=1
        i+=k
        j-=k
    return res

def solve():
    n,m=LI()
    s=SI()
    ll=Manacher(s)
    if max(ll)>=m:
        print(1)
        return 
    man=Manacher(s+s)
    if max(man)>=m:
        print(2)
        return 
    if ll[n]==n:
        print((m+n-1)//n)
    else:
        mn=inf
        rr=Manacher(s[::-1])
        for i in range(n):
            if ll[i]+rr[n-i]==n:
                mn=min(mn,i,n-i)
        if mn==inf:
            print(-1)
        else:
            # print(mn)
            # cn-mn>=m
            # c>=(m+mn)/n
            print((m+mn+n-1)//n)

for _ in range(II()):solve()
0