結果

問題 No.2858 Make a Palindrome
ユーザー ochiaigawaochiaigawa
提出日時 2024-08-25 15:32:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,143 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 167,024 KB
最終ジャッジ日時 2024-08-25 15:32:39
合計ジャッジ時間 12,035 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 819 ms
78,236 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 316 ms
77,848 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 220 ms
156,096 KB
testcase_21 AC 192 ms
156,112 KB
testcase_22 AC 113 ms
105,968 KB
testcase_23 AC 193 ms
147,548 KB
testcase_24 WA -
testcase_25 AC 148 ms
131,568 KB
testcase_26 AC 136 ms
119,460 KB
testcase_27 AC 227 ms
151,552 KB
testcase_28 AC 178 ms
155,184 KB
testcase_29 AC 202 ms
155,848 KB
testcase_30 AC 207 ms
151,364 KB
testcase_31 AC 204 ms
151,356 KB
testcase_32 AC 233 ms
151,532 KB
testcase_33 AC 228 ms
151,536 KB
testcase_34 AC 205 ms
151,356 KB
testcase_35 AC 206 ms
151,432 KB
testcase_36 AC 198 ms
158,764 KB
testcase_37 AC 223 ms
167,024 KB
testcase_38 AC 206 ms
151,484 KB
testcase_39 AC 204 ms
151,416 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
    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
                print((M + N - 1) // N + 1)
                return
        else:
            if (i + 1) // 2 + R[i] // 2 == N + N and R[i] > N:
                M -= R[i] - N
                print((M + N - 1) // N + 1)
                return
    print(-1)
    return

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