結果

問題 No.430 文字列検索
ユーザー kappybarkappybar
提出日時 2020-07-19 12:54:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,454 bytes
コンパイル時間 1,780 ms
コンパイル使用メモリ 177,308 KB
実行使用メモリ 27,136 KB
最終ジャッジ日時 2024-11-10 00:45:03
合計ジャッジ時間 3,230 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 18 ms
5,248 KB
testcase_03 AC 19 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 326 ms
26,880 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 16 ms
5,888 KB
testcase_11 AC 70 ms
8,064 KB
testcase_12 AC 71 ms
8,064 KB
testcase_13 AC 70 ms
8,192 KB
testcase_14 AC 55 ms
6,528 KB
testcase_15 AC 43 ms
5,632 KB
testcase_16 AC 22 ms
5,248 KB
testcase_17 AC 21 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
constexpr int INF = 1e9;
constexpr long long LINF = 1e17;
constexpr int MOD = 1000000007;
constexpr double PI = 3.14159265358979323846;

struct Rollinghash{
    string S;
    int n;
    vector<unsigned long long int> powb;
    vector<unsigned long long int> H;
    unsigned long long int B = 1000007;
    unsigned long long int M = 1000000007;

    Rollinghash(string S):S(S){
        n=(int)(S.size());
        H.resize(n+1);
        powb.resize(n+1);
        init();
    }
    void init(){
        unsigned long long int p = 1;
        powb[0] = p;
        H[0] = 0;
        for(int i=1;i<=n;i++) powb[i] = (powb[i-1]*B)%M;
        for(int i=1;i<=n;i++) H[i] = (H[i-1]*B + S[i-1])%M;
    }
    //[l,r)
    unsigned long long int hash(int l,int r){
        return (H[r] - (H[l] * powb[r-l])%M + M)%M;
    }
}; 

int main(){
    string S;
    cin >> S;
    Rollinghash Rs(S);
    map<unsigned long long int,long long int> mp;
    for(int i=1;i<=min(10,(int)(S.size()));i++){
        for(int j=0;j+i<=S.size();j++){
            mp[Rs.hash(j,j+i)] ++;
        }
    }
    
    ll ans = 0;
    int m;
    cin >> m;
    rep(i,m){
        string C;
        cin >> C;
        Rollinghash Rc(C);
        ans += mp[Rc.hash(0,C.size())];
    }
    cout << ans << endl;
    return 0;
}
0