結果
| 問題 | No.430 文字列検索 | 
| コンテスト | |
| ユーザー |  ysystem7 | 
| 提出日時 | 2020-04-03 14:13:25 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 609 ms / 2,000 ms | 
| コード長 | 1,619 bytes | 
| コンパイル時間 | 3,332 ms | 
| コンパイル使用メモリ | 211,168 KB | 
| 最終ジャッジ日時 | 2025-01-09 12:40:14 | 
| ジャッジサーバーID (参考情報) | judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 14 | 
ソースコード
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
#define cinf(n,x) for(int i=0;i<(n);i++)cin>>x[i];
#define ft first
#define sc second
#define pb push_back
#define lb lower_bound
#define ub upper_bound
#define all(v) (v).begin(),(v).end()
#define mod 1000000007
#define FS fixed<<setprecision(15)
using namespace std;
typedef long long ll;
template<class T> using V=vector<T>;
using Graph = vector<vector<int>>;
using P=pair<ll,ll>;
typedef unsigned long long ull;
typedef long double ldouble;
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }
const ll INF=1e18;
const ull B=1000000007;//ハッシュの基数
//aはbに含まれているか?
int contain(string a,string b){
    int res=0;
    int al=a.length(),bl=b.length();
    if(al>bl) return res;
    //Bのal乗を計算
    ull t=1;
    for(int i=0;i<al;i++) t*=B;
    //aとbの最初のal文字に関するハッシュ値を計算
    ull 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];
    //bの場所を1つずつ進めながらハッシュ値をチェック
    for(int i=0;i+al<=bl;i++){
        if(ah==bh) res++;//bのi文字目からのal文字が一致
        if(i+al<bl) bh=bh*B+b[i+al]-b[i]*t;
    }
    return res;
}
int main(){
    string s;
    cin>>s;
    int m;
    cin>>m;
    ll ans=0;
    while(m--){
        string c;
        cin>>c;
        ans=ans+contain(c,s);
    }
    cout<<ans<<endl;
}
            
            
            
        