結果

問題 No.958 たぷりすたべる (回文)
ユーザー maspymaspy
提出日時 2020-05-12 01:44:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 933 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,948 KB
最終ジャッジ日時 2024-07-19 13:06:44
合計ジャッジ時間 15,941 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 28 ms
10,496 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 26 ms
10,368 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 26 ms
10,368 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 24 ms
10,368 KB
testcase_13 AC 24 ms
10,624 KB
testcase_14 AC 24 ms
10,624 KB
testcase_15 AC 24 ms
10,496 KB
testcase_16 AC 25 ms
10,624 KB
testcase_17 AC 25 ms
10,624 KB
testcase_18 AC 25 ms
10,624 KB
testcase_19 AC 26 ms
10,496 KB
testcase_20 AC 26 ms
10,496 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 25 ms
10,752 KB
testcase_23 AC 25 ms
10,496 KB
testcase_24 AC 25 ms
10,496 KB
testcase_25 AC 27 ms
10,496 KB
testcase_26 AC 26 ms
10,624 KB
testcase_27 AC 244 ms
16,552 KB
testcase_28 AC 263 ms
16,676 KB
testcase_29 AC 246 ms
16,420 KB
testcase_30 AC 233 ms
16,680 KB
testcase_31 AC 238 ms
16,676 KB
testcase_32 AC 239 ms
16,804 KB
testcase_33 AC 238 ms
16,420 KB
testcase_34 AC 240 ms
16,548 KB
testcase_35 AC 237 ms
16,552 KB
testcase_36 AC 244 ms
16,680 KB
testcase_37 AC 225 ms
16,340 KB
testcase_38 AC 228 ms
16,384 KB
testcase_39 AC 228 ms
16,388 KB
testcase_40 AC 248 ms
16,276 KB
testcase_41 AC 227 ms
16,148 KB
testcase_42 AC 238 ms
16,404 KB
testcase_43 AC 224 ms
16,276 KB
testcase_44 AC 225 ms
16,280 KB
testcase_45 AC 225 ms
16,408 KB
testcase_46 AC 241 ms
16,400 KB
testcase_47 AC 686 ms
25,280 KB
testcase_48 AC 790 ms
27,392 KB
testcase_49 AC 819 ms
27,644 KB
testcase_50 AC 811 ms
27,388 KB
testcase_51 AC 933 ms
45,696 KB
testcase_52 AC 845 ms
45,948 KB
testcase_53 AC 853 ms
33,404 KB
testcase_54 AC 907 ms
45,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

def Manacher(S):
    L = len(S)
    R = [0] * L
    i = 0; j = 0
    while i < L:
        while (i >= j) and (i + j < L) and (S[i-j] == S[i+j]):
            j += 1
        R[i] = j
        k = 1
        while (i >= k) and (i + k < L) and (k + R[i-k] < j):
            R[i + k] = R[i - k]
            k += 1
        i += k
        j -= k
    return R

N,K,Q = map(int, readline().split())
S = readline().rstrip()
A = map(int, read().split())

M = Manacher(S*3)

for x in A:
    x -= 1
    nl = x + 1
    nr = N * K - x
    q, r = divmod(x, N)
    l = M[N + r]
    if l in [N + r + 1, 2 * N - r]:
        n = min(nl, nr)
        print(2 * n - 1)
    else:
        print(2 * min(l, nl, nr) - 1)
0