結果

問題 No.2858 Make a Palindrome
ユーザー ochiaigawaochiaigawa
提出日時 2024-08-25 15:42:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,208 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 166,856 KB
最終ジャッジ日時 2024-08-25 15:43:12
合計ジャッジ時間 12,869 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 842 ms
78,228 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 319 ms
78,152 KB
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 WA -
testcase_19 WA -
testcase_20 AC 200 ms
155,756 KB
testcase_21 AC 201 ms
156,376 KB
testcase_22 AC 116 ms
105,864 KB
testcase_23 AC 197 ms
147,704 KB
testcase_24 WA -
testcase_25 AC 150 ms
131,528 KB
testcase_26 AC 138 ms
119,204 KB
testcase_27 AC 209 ms
151,336 KB
testcase_28 AC 180 ms
155,124 KB
testcase_29 AC 204 ms
156,184 KB
testcase_30 AC 210 ms
151,708 KB
testcase_31 AC 213 ms
151,348 KB
testcase_32 AC 209 ms
151,352 KB
testcase_33 AC 209 ms
151,468 KB
testcase_34 AC 211 ms
151,680 KB
testcase_35 AC 211 ms
151,344 KB
testcase_36 AC 230 ms
158,704 KB
testcase_37 AC 229 ms
166,856 KB
testcase_38 AC 208 ms
151,788 KB
testcase_39 AC 209 ms
151,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def solve(N, M, S):
    R = manacher(S)
    if max(R) >= M:
        print(1)
        return
    R = manacher(S + S)
    if max(R) >= M:
        print(2)
        return
    ans = 2000000000
    for i in range(len(R)):
        if i % 2 == 0:
            if (R[i] + 1) // 2 + i // 2 == N + N and R[i] > N:
                M -= R[i] - N
                ans = min(ans, (M + N - 1) // N + 1)
        else:
            if (i + 1) // 2 + R[i] // 2 == N + N and R[i] > N:
                M -= R[i] - N
                ans = min(ans, (M + N - 1) // N + 1)
                
    if ans == 2000000000:
      print(-1)
    else:
      print(ans)
    return

T = int(input())
for _ in range(T):
    N, M = map(int, input().split())
    S = input()
    solve(N, M, S)
0