結果

問題 No.430 文字列検索
ユーザー koprickykopricky
提出日時 2019-08-15 22:25:24
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,835 bytes
コンパイル時間 1,938 ms
コンパイル使用メモリ 184,904 KB
実行使用メモリ 28,308 KB
最終ジャッジ日時 2023-10-19 19:28:58
合計ジャッジ時間 4,199 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define ll long long
#define INF 1000000005
#define MOD 1000000007
#define EPS 1e-10
#define rep(i,n) for(int i=0;i<(int)(n);++i)
#define rrep(i,n) for(int i=(int)(n)-1;i>=0;--i)
#define srep(i,s,t) for(int i=(int)(s);i<(int)(t);++i)
#define each(a,b) for(auto& (a): (b))
#define all(v) (v).begin(),(v).end()
#define len(v) (int)(v).size()
#define zip(v) sort(all(v)),v.erase(unique(all(v)),v.end())
#define cmx(x,y) x=max(x,y)
#define cmn(x,y) x=min(x,y)
#define fi first
#define se second
#define pb push_back
#define show(x) cout<<#x<<" = "<<(x)<<endl
#define spair(p) cout<<#p<<": "<<p.fi<<" "<<p.se<<endl
#define sar(a,n) cout<<#a<<":";rep(pachico,n)cout<<" "<<a[pachico];cout<<endl
#define svec(v) cout<<#v<<":";rep(pachico,v.size())cout<<" "<<v[pachico];cout<<endl
#define svecp(v) cout<<#v<<":";each(pachico,v)cout<<" {"<<pachico.first<<":"<<pachico.second<<"}";cout<<endl
#define sset(s) cout<<#s<<":";each(pachico,s)cout<<" "<<pachico;cout<<endl
#define smap(m) cout<<#m<<":";each(pachico,m)cout<<" {"<<pachico.first<<":"<<pachico.second<<"}";cout<<endl

using namespace std;

typedef pair<int,int> P;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<ll> vl;
typedef vector<vl> vvl;
typedef vector<double> vd;
typedef vector<P> vp;
typedef vector<string> vs;

const int MAX_N = 100005;

struct RH {
	static long long mod[2], mul[2];
    static vector<long long> pm[2];
	string s;
    int sz;
    vector<vector<long long> > hs;
	RH(const string& args) : s(args), sz((int)s.size()), hs(2, vector<long long>(sz+1, 0)){
        for(int i = 0; i < 2; i++){
            if(pm[i].empty()) pm[i].push_back(1);
            for(int j = 0; j < sz; j++){
                hs[i][j+1] = (hs[i][j] * mul[i] + s[j]) % mod[i];
            }
        }
	}
	pair<long long, long long> hash(const int l, const int r){	//文字列sのインデックス [l,r) の部分文字列のハッシュ値
		if(l>=r) return make_pair(0, 0);
        long long res[2];
        for(int i = 0; i < 2; i++){
            while((int)pm[i].size() <= r){
                pm[i].push_back(pm[i].back() * mul[i] % mod[i]);
            }
            res[i] = (hs[i][r] + mod[i] - hs[i][l] * pm[i][r-l]) % mod[i];
        }
		return make_pair(res[0], res[1]);
	}
};
vector<long long> RH::pm[2];
long long RH::mod[2] = {1000000007, 1000000009}, RH::mul[2] = {10009, 10007};

map<pll,int> mp;

int main()
{
    cin.tie(0);
    ios::sync_with_stdio(false);
    string s;
    cin >> s;
    RH rh(s);
    srep(i,1,11){
        rep(j,len(s)-i+1){
            mp[rh.hash(j,i+j)]++;
        }
    }
    int n;
    cin >> n;
    vs vec(n);
    int ans = 0;
    rep(i,n){
        cin >> vec[i];
        RH cri(vec[i]);
        ans += mp[cri.hash(0, (int)vec[i].size())];
    }
    cout << ans << "\n";
    return 0;
}
0