結果

問題 No.430 文字列検索
ユーザー tatsukawatatsukawa
提出日時 2016-10-28 19:33:45
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 445 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 1,249 ms
コンパイル使用メモリ 161,448 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-15 16:11:13
合計ジャッジ時間 7,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 438 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 437 ms
6,940 KB
testcase_03 AC 436 ms
6,940 KB
testcase_04 AC 439 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 445 ms
6,940 KB
testcase_13 AC 437 ms
6,944 KB
testcase_14 AC 439 ms
6,944 KB
testcase_15 AC 437 ms
6,944 KB
testcase_16 AC 436 ms
6,940 KB
testcase_17 AC 440 ms
6,944 KB
testcase_18 AC 437 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = unsigned long long;
using P = std::pair<int, int>;

const int INF = 1e8;

const ll B = 100000007;

int cnt(string b, string a) {
   
    int res = 0; 
    int al = a.size();
    int bl = b.size();

    ll t = 1;
    for(int i = 0; i < al; i++) t *= B;

    ll ah = 0, bh = 0;
    for(int i = 0; i < al; i++) ah = ah * B + a[i];
    for(int i = 0; i < al; i++) bh = bh * B + b[i];

    for(int i = 0; i + al <= bl; i++) {
        if(ah == bh) res++;
        if(i + al < bl) bh = bh * B + b[i+al] - b[i] * t;
    }

    return res;
}

int main() {
    ios::sync_with_stdio(false);

    string S, C;
    int M;
    int ans = 0;
    cin >> S >> M;

    for(int i = 0; i < M; i++) {
        cin >> C;
        ans += cnt(S, C);
    }
    cout << ans << endl;
}
0