結果

問題 No.2858 Make a Palindrome
ユーザー miya145592miya145592
提出日時 2024-08-25 16:23:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,130 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 166,700 KB
最終ジャッジ日時 2024-08-25 16:23:34
合計ジャッジ時間 9,044 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 301 ms
78,844 KB
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 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 115 ms
79,488 KB
testcase_19 WA -
testcase_20 AC 186 ms
156,324 KB
testcase_21 AC 203 ms
155,832 KB
testcase_22 AC 107 ms
105,568 KB
testcase_23 AC 180 ms
147,460 KB
testcase_24 AC 173 ms
145,668 KB
testcase_25 AC 135 ms
131,676 KB
testcase_26 AC 128 ms
119,172 KB
testcase_27 AC 190 ms
151,280 KB
testcase_28 AC 179 ms
154,040 KB
testcase_29 AC 182 ms
156,320 KB
testcase_30 AC 192 ms
151,560 KB
testcase_31 AC 189 ms
151,512 KB
testcase_32 AC 187 ms
151,352 KB
testcase_33 AC 190 ms
151,300 KB
testcase_34 AC 190 ms
151,720 KB
testcase_35 AC 209 ms
151,508 KB
testcase_36 AC 184 ms
158,488 KB
testcase_37 AC 206 ms
166,700 KB
testcase_38 AC 191 ms
151,568 KB
testcase_39 AC 186 ms
151,356 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)
    if ma>=M:
        print(1)
        continue
    if mb>=M:
        print(2)
        continue
    if mb-ma==0:
        print(-1)
        continue
    cnt = (M-mb+mb-ma-1)//(mb-ma)
    print(cnt+2)
0