結果
問題 | No.430 文字列検索 |
ユーザー | Kiona1018 |
提出日時 | 2019-10-10 22:27:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,194 bytes |
コンパイル時間 | 1,431 ms |
コンパイル使用メモリ | 168,260 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-11-10 00:35:48 |
合計ジャッジ時間 | 4,672 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,496 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
#include<bits/stdc++.h> #define rep(i,n,m) for(int i = (n); i <(m); i++) #define rrep(i,n,m) for(int i = (n) - 1; i >=(m); i--) using namespace std; using ll = long long; int kmp_search(string ref, string key) { vector<int> index(key.size(), 0); int i, j; i = 0, j = 1; while (j < key.size()) { if (key[i] == key[j]) { ++i; index[j] = i; ++j; } else if (i == 0) { index[j] = 0; ++j; } else i = index[j-1]; } // rep(i, 0, index.size()) // cout << index[i] << endl; i = j = 0; int cnt = 0; while (i < ref.size()) { if (ref[i] == key[j]) ++i, ++j; else if (j == 0) ++i; else j = index[j-1]; if (j == key.size()) ++cnt, j = index[j-1]; } return cnt; } int main() { string s; int m; cin >> s >> m; int cnt = 0; rep(i, 0, m) { string key; cin >> key; cnt += kmp_search(s, key); // cout << kmp_search(s, key) << endl; } cout << cnt << endl; return 0; }