結果

問題 No.2858 Make a Palindrome
ユーザー mkawa2mkawa2
提出日時 2024-08-25 15:17:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,872 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 92,076 KB
最終ジャッジ日時 2024-08-25 15:17:23
合計ジャッジ時間 7,197 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 228 ms
78,532 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 153 ms
77,692 KB
testcase_09 WA -
testcase_10 AC 150 ms
77,640 KB
testcase_11 AC 162 ms
77,672 KB
testcase_12 AC 150 ms
77,292 KB
testcase_13 AC 145 ms
77,092 KB
testcase_14 AC 152 ms
77,152 KB
testcase_15 AC 90 ms
75,728 KB
testcase_16 AC 98 ms
75,996 KB
testcase_17 AC 108 ms
75,576 KB
testcase_18 AC 96 ms
75,928 KB
testcase_19 AC 94 ms
75,552 KB
testcase_20 AC 81 ms
83,944 KB
testcase_21 AC 82 ms
84,428 KB
testcase_22 AC 69 ms
79,720 KB
testcase_23 AC 83 ms
83,936 KB
testcase_24 AC 84 ms
82,900 KB
testcase_25 AC 79 ms
81,696 KB
testcase_26 AC 75 ms
81,172 KB
testcase_27 AC 97 ms
91,516 KB
testcase_28 AC 89 ms
82,844 KB
testcase_29 AC 107 ms
84,900 KB
testcase_30 AC 93 ms
92,076 KB
testcase_31 AC 91 ms
91,968 KB
testcase_32 AC 91 ms
91,704 KB
testcase_33 AC 90 ms
91,780 KB
testcase_34 AC 98 ms
91,784 KB
testcase_35 AC 91 ms
91,988 KB
testcase_36 AC 92 ms
91,452 KB
testcase_37 AC 93 ms
91,824 KB
testcase_38 AC 93 ms
91,968 KB
testcase_39 AC 91 ms
91,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

# 偶数長、奇数長含めて回文「直径」(つまり全長)を返す
# s[i]の前の隙間を中心とした回文長がres[i*2](偶数長)
# s[i]を中心とした回文長がres[i*2+1](奇数長)
#  a b a a b a
# 0103016103010
# dummyがsに入っていないか注意
def Manacher(s):
    dummy="@"
    s = dummy + dummy.join(s) + dummy
    i=j=0
    res=[-1]*len(s)
    while i<len(s):
        while i-j>=0 and i+j<len(s) and s[i-j]==s[i+j]:j+=1
        res[i]=j-1
        k=1
        while i-k>=0 and k+res[i-k]+1<j:
            res[i+k]=res[i-k]
            k+=1
        i+=k
        j-=k
    return res

def solve():
    n,m=LI()
    s=SI()
    ll=Manacher(s)
    if max(ll)>=m:
        print(1)
    elif ll[n]==n:
        print((m+n-1)//n)
    else:
        mn=inf
        rr=Manacher(s[::-1])
        for i in range(n):
            if ll[i]+rr[n-i]==n:
                mn=min(mn,i,n-i)
        if mn==inf:
            print(-1)
        else:
            # print(mn)
            # cn-mn>=m
            # c>=(m+mn)/n
            print((m+mn+n-1)//n)

for _ in range(II()):solve()
0