結果

問題 No.430 文字列検索
ユーザー t33ft33f
提出日時 2020-04-13 00:50:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,946 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 68,992 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-10 00:42:23
合計ジャッジ時間 13,875 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 892 ms
5,248 KB
testcase_02 AC 705 ms
5,248 KB
testcase_03 AC 574 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 0 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 1,927 ms
5,248 KB
testcase_12 AC 1,927 ms
5,248 KB
testcase_13 AC 1,946 ms
5,248 KB
testcase_14 AC 1,800 ms
5,248 KB
testcase_15 AC 1,475 ms
5,248 KB
testcase_16 AC 793 ms
5,248 KB
testcase_17 AC 712 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <numeric>
#include <vector>
#include <iostream>
using namespace std;
int kmp_cnt(string& pattern, string& text) {
  vector<int> kmp_next(pattern.size()+1);
  kmp_next[0] = -1;
  for (int i = 0, j = -1; i < pattern.size(); ) {
    while (j >= 0 && pattern[i] != pattern[j])
      j = kmp_next[j];
    i++; j++;
    if (i < pattern.size() && pattern[i] == pattern[j])
      kmp_next[i] = kmp_next[j];
    else
      kmp_next[i] = j;
  }
  int ans = 0;
  for (int i = 0, j = 0; j < text.size(); ) {
    while (i >= 0 && pattern[i] != text[j])
      i = kmp_next[i];
    i++; j++;
    if (i == pattern.size()) {
      ans++;
      i = kmp_next[i];
    }
  }
  return ans;
};

int main() {
    string s; cin >> s;
    int m; cin >> m;
    int ans = 0;
    while (m--) {
      string t; cin >> t;
      ans += kmp_cnt(t, s);
    }
    cout << ans << endl;
}
0