結果

問題 No.2858 Make a Palindrome
ユーザー square1001square1001
提出日時 2024-07-15 11:49:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,012 ms / 3,000 ms
コード長 1,066 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 353,792 KB
最終ジャッジ日時 2024-07-15 11:49:48
合計ジャッジ時間 21,623 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,012 ms
79,464 KB
testcase_01 AC 538 ms
78,648 KB
testcase_02 AC 509 ms
78,116 KB
testcase_03 AC 463 ms
79,568 KB
testcase_04 AC 508 ms
78,680 KB
testcase_05 AC 443 ms
78,072 KB
testcase_06 AC 409 ms
78,228 KB
testcase_07 AC 430 ms
78,988 KB
testcase_08 AC 399 ms
78,788 KB
testcase_09 AC 414 ms
78,544 KB
testcase_10 AC 449 ms
78,904 KB
testcase_11 AC 404 ms
78,184 KB
testcase_12 AC 427 ms
78,864 KB
testcase_13 AC 395 ms
79,092 KB
testcase_14 AC 411 ms
79,068 KB
testcase_15 AC 291 ms
90,784 KB
testcase_16 AC 278 ms
98,180 KB
testcase_17 AC 302 ms
93,324 KB
testcase_18 AC 285 ms
94,804 KB
testcase_19 AC 281 ms
93,024 KB
testcase_20 AC 507 ms
278,336 KB
testcase_21 AC 489 ms
274,728 KB
testcase_22 AC 268 ms
185,932 KB
testcase_23 AC 520 ms
273,788 KB
testcase_24 AC 409 ms
269,020 KB
testcase_25 AC 339 ms
207,908 KB
testcase_26 AC 333 ms
217,296 KB
testcase_27 AC 516 ms
326,976 KB
testcase_28 AC 410 ms
247,492 KB
testcase_29 AC 501 ms
277,680 KB
testcase_30 AC 535 ms
353,644 KB
testcase_31 AC 568 ms
353,792 KB
testcase_32 AC 537 ms
353,700 KB
testcase_33 AC 524 ms
343,612 KB
testcase_34 AC 523 ms
343,356 KB
testcase_35 AC 533 ms
342,960 KB
testcase_36 AC 499 ms
336,612 KB
testcase_37 AC 575 ms
337,352 KB
testcase_38 AC 506 ms
343,740 KB
testcase_39 AC 509 ms
328,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# taken from https://tjkendev.github.io/procon-library/python/string/manacher.html
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 longest_palindrome(s):
	return max(manacher(s))

def solve(n, m, s):
	v1 = longest_palindrome(s * 1)
	v2 = longest_palindrome(s * 2)
	v3 = longest_palindrome(s * 3)
	v4 = longest_palindrome(s * 4)
	if v1 >= m:
		return 1
	if v2 >= m:
		return 2
	if v3 >= m:
		return 3
	ans = -1
	if v3 >= 2 * n:
		subans = 3 + (m - v3 + 2 * n - 1) // (2 * n) * 2
		ans = (subans if ans == -1 else min(ans, subans))
	if v4 >= 2 * n:
		subans = 4 + (m - v4 + 2 * n - 1) // (2 * n) * 2
		ans = (subans if ans == -1 else min(ans, subans))
	return ans

t = int(input())
for _ in range(t):
	n, m = map(int, input().split())
	s = input()
	print(solve(n, m, s))
0