結果

問題 No.430 文字列検索
ユーザー zkouzkou
提出日時 2020-11-13 15:47:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,166 bytes
コンパイル時間 2,013 ms
コンパイル使用メモリ 198,684 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-30 02:07:48
合計ジャッジ時間 16,615 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 609 ms
4,376 KB
testcase_02 AC 926 ms
4,376 KB
testcase_03 AC 709 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 4 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 3 ms
4,380 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef LOCAL
#define debug(_) cerr << #_ << ": " << (_) << '\n'
#define _GLIBCXX_DEBUG
#else
#define debug(_) (void(0))
#endif  // LOCAL

#include <bits/stdc++.h>
using namespace std;

int kmp_count(string &s, string &w) {
    // テーブル構築
    vector<int> T(w.size() + 1, 0);
    T[0] = -1;
    int i = 2, j = 0;
    for (i = 2; i <= w.size(); i++){
        if (w[j] == w[i - 1]) {
            j++;
            T[i] = j;
        } else if (j > 0) {
            j = T[j];
        }
    }
    // 検索
    int ret = 0;
    int m = 0;
    i = 0;
    while (m + i < s.size()) {
        if (w[i] == s[m + i]) {
            i++;
            if (i == w.size()) {
                ret++;
                m = m + i - T[i];
                i = T[i];
            }
        } else {
            m = m + i - T[i];
            if (i > 0) {
                i = T[i];
            }
        }
    }
    // cout << ret << endl;
    return ret;
}

int main(){
    string S;
    cin >> S;
    int M;
    cin >> M;
    string C;
    int ans = 0;
    for (int i = 0; i < M; i++){
        cin >> C;
        ans += kmp_count(S, C);
    }
    cout << ans << '\n';

    return 0;
}
0