-
-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[問題案] Repetition SubStrings #1024
Comments
というのがどのような意味を指しているか分かりませんが, Z Algorithm:Rolling Hash で lcp を計算 などの解法があって,利用しているユーザーはいます. Rolling Hash が解法に使えることが,今以上に分かりやすい問題が欲しいという意味であれば,単に |
説明不足でした。この意味です。 |
文字列長が とりあえずこんな感じで考えます.
|
ありがとうございます。 (さっきの文章を書いてる時点で繰り返しのことが頭から抜けててすこしおかしなことを書いていました…) |
ありがとうございます。 |
問題名: Repetition SubStrings(もっといい名前はありそう)
問題文
長さ$N$ の文字列 $S$ と、長さ $M$ の文字列 $T$ が与えられます。
以下の形式のクエリを$Q$ 回処理してください。
Yes
、でなければNo
を出力する。(制約
入力
解法
ロリハでがんばる想定です。純粋なロリハをverifyできる問題はなさそうだと思って提案します(あったらすみません)
繰り返しは$O(\log N)$ で高速にできるはずなので計算量は $O(N+Q \log \max(c,f))$ になると思います。
メモ
The text was updated successfully, but these errors were encountered: