結果

問題 No.1018 suffixsuffixsuffix
ユーザー maspymaspy
提出日時 2023-06-30 14:10:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,212 ms / 2,000 ms
コード長 2,221 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 64,772 KB
最終ジャッジ日時 2024-07-07 02:04:32
合計ジャッジ時間 36,027 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 537 ms
44,596 KB
testcase_01 AC 535 ms
44,600 KB
testcase_02 AC 534 ms
44,596 KB
testcase_03 AC 537 ms
44,436 KB
testcase_04 AC 533 ms
44,220 KB
testcase_05 AC 534 ms
44,344 KB
testcase_06 AC 536 ms
44,312 KB
testcase_07 AC 533 ms
44,312 KB
testcase_08 AC 536 ms
44,596 KB
testcase_09 AC 834 ms
62,172 KB
testcase_10 AC 824 ms
63,060 KB
testcase_11 AC 843 ms
63,808 KB
testcase_12 AC 829 ms
62,736 KB
testcase_13 AC 829 ms
62,704 KB
testcase_14 AC 1,117 ms
63,516 KB
testcase_15 AC 1,131 ms
64,260 KB
testcase_16 AC 1,175 ms
64,772 KB
testcase_17 AC 1,146 ms
64,256 KB
testcase_18 AC 1,154 ms
63,264 KB
testcase_19 AC 637 ms
55,684 KB
testcase_20 AC 638 ms
56,244 KB
testcase_21 AC 642 ms
56,104 KB
testcase_22 AC 641 ms
56,152 KB
testcase_23 AC 649 ms
56,776 KB
testcase_24 AC 1,125 ms
62,772 KB
testcase_25 AC 1,188 ms
64,396 KB
testcase_26 AC 1,130 ms
62,800 KB
testcase_27 AC 1,158 ms
63,244 KB
testcase_28 AC 1,162 ms
63,104 KB
testcase_29 AC 694 ms
57,272 KB
testcase_30 AC 694 ms
57,592 KB
testcase_31 AC 698 ms
56,688 KB
testcase_32 AC 697 ms
57,360 KB
testcase_33 AC 696 ms
56,792 KB
testcase_34 AC 533 ms
44,084 KB
testcase_35 AC 656 ms
56,768 KB
testcase_36 AC 698 ms
56,516 KB
testcase_37 AC 1,212 ms
64,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/local/bin/python3.8
import sys
read = sys.stdin.read
readline = sys.stdin.readline
readlines = sys.stdin.readlines
import numpy as np

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


def suffix_array(S):
    N = len(S)

    n = 1
    key = np.array([ord(x) for x in S])
    for _ in range(N.bit_length() + 1):
        ind = key.argsort()
        key_sort = key[ind]
        # 同じ数はまとめる
        cls = np.ones(N, np.int64)
        cls[1:] = (key_sort[1:] != key_sort[:-1])
        np.cumsum(cls, out=cls)
        rank = np.empty_like(cls)
        rank[ind] = cls
        if n >= N:
            break
        n *= 2
        key = rank * (cls[-1] + 10)
        key[:-n // 2] += rank[n // 2:]
    return ind, rank - 1


def prime_table(N):
    is_prime = np.zeros(N + 1, np.bool_)
    is_prime[2] = 1
    is_prime[3::2] = 1
    for p in range(3, N, 2):
        if p * p >= N:
            break
        if is_prime[p]:
            is_prime[p * p:: p + p] = 0
    primes = np.where(is_prime)[0]
    return is_prime, primes


is_prime, primes = prime_table(10 ** 5 + 10)


# repeated 対策
def to_standard_form(S, M):
    for p in primes:
        if p > len(S):
            break
        while True:
            L = len(S)
            if L % p != 0:
                break
            dx = L // p
            repeated = True
            for i in range(1, p):
                if S[i * dx: i * dx + dx] != S[:dx]:
                    repeated = False
                    break
            if not repeated:
                break
            S = S[:dx]
            M *= p
    return S, M


S, M = to_standard_form(S, M)
if M == 1:
    SA, ISA = suffix_array(S)
    K = np.array(K)
    answers = 1 + SA[K - 1]
    print(' '.join(answers.astype(str)))
    exit()


SA, ISA = suffix_array(S * 2)
# 長さを並べる
N = len(S)
SA = (N * 2 - SA)
answer = [0] * Q
i = 0
ind = 1
for x in SA.tolist():
    if x <= N:
        n = 1
    else:
        n = M - 1
    while i < Q and K[i] < ind + n:
        answer[i] = N * (M - K[i] + ind) + 1 - x
        i += 1
    ind += n

# 長さを持ったので、インデックスに戻す
print(' '.join(map(str, answer)))
0