結果

問題 No.2858 Make a Palindrome
ユーザー miya145592miya145592
提出日時 2024-08-25 19:36:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 443 ms / 3,000 ms
コード長 1,237 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 240,620 KB
最終ジャッジ日時 2024-08-25 19:36:42
合計ジャッジ時間 13,482 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 443 ms
79,856 KB
testcase_01 AC 280 ms
77,856 KB
testcase_02 AC 266 ms
78,640 KB
testcase_03 AC 288 ms
78,316 KB
testcase_04 AC 274 ms
78,924 KB
testcase_05 AC 238 ms
77,700 KB
testcase_06 AC 264 ms
79,056 KB
testcase_07 AC 249 ms
78,740 KB
testcase_08 AC 270 ms
79,268 KB
testcase_09 AC 253 ms
79,176 KB
testcase_10 AC 236 ms
78,028 KB
testcase_11 AC 230 ms
78,300 KB
testcase_12 AC 246 ms
78,784 KB
testcase_13 AC 265 ms
78,880 KB
testcase_14 AC 249 ms
78,640 KB
testcase_15 AC 190 ms
87,904 KB
testcase_16 AC 174 ms
90,160 KB
testcase_17 AC 199 ms
88,096 KB
testcase_18 AC 195 ms
88,140 KB
testcase_19 AC 189 ms
88,568 KB
testcase_20 AC 336 ms
210,836 KB
testcase_21 AC 285 ms
211,800 KB
testcase_22 AC 182 ms
154,448 KB
testcase_23 AC 323 ms
222,012 KB
testcase_24 AC 255 ms
198,680 KB
testcase_25 AC 225 ms
179,056 KB
testcase_26 AC 228 ms
186,276 KB
testcase_27 AC 336 ms
240,196 KB
testcase_28 AC 260 ms
189,668 KB
testcase_29 AC 312 ms
231,472 KB
testcase_30 AC 324 ms
230,372 KB
testcase_31 AC 357 ms
230,536 KB
testcase_32 AC 322 ms
230,300 KB
testcase_33 AC 319 ms
230,616 KB
testcase_34 AC 325 ms
230,776 KB
testcase_35 AC 352 ms
230,540 KB
testcase_36 AC 301 ms
221,428 KB
testcase_37 AC 341 ms
237,512 KB
testcase_38 AC 327 ms
230,380 KB
testcase_39 AC 350 ms
240,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 偶数長含めた回文の長さを求める
# R[2*i] = L: S[i]を中心とする奇数長の最大回文
# R[2*i+1] = L: S[i:i+2]を中心とする偶数長の最大回文
# ダミー文字を挟むが、各 R[i] は実際の回文の文字列長と一致する
def manacher(S):
    C = []
    for a in S:
        C.append(a)
        C.append(0)
    C.pop()

    L = len(C)

    R = [0]*L

    i = j = 0
    while i < L:
        while j <= i < L-j and C[i-j] == C[i+j]:
            j += 1
        R[i] = j
        k = 1
        while j-R[i-k] > k <= i < L-k:
            R[i+k] = R[i-k]
            k += 1
        i += k; j -= k

    for i in range(L):
        if i & 1 == R[i] & 1:
            R[i] -= 1
    return R

import sys
input = sys.stdin.readline
T = int(input())
for _ in range(T):
    N, M = map(int, input().split())
    S = input().strip()
    a = manacher(S)
    ma = max(a)
    b = manacher(S+S)
    mb = max(b)
    #print(ma, mb)
    c = manacher(S+S+S)
    mc = max(c)
    if ma>=M:
        print(1)
        continue
    if mb>=M:
        print(2)
        continue
    if mc>=M:
        print(3)
        continue
    if mc-mb==0:
        print(-1)
        continue
    cnt = (M-mc+mc-mb-1)//(mc-mb)
    print(cnt+3)
0