結果

問題 No.430 文字列検索
ユーザー koprickykopricky
提出日時 2018-06-30 03:51:37
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 3,042 bytes
コンパイル時間 1,407 ms
コンパイル使用メモリ 162,504 KB
実行使用メモリ 24,860 KB
最終ジャッジ日時 2023-09-13 16:10:14
合計ジャッジ時間 3,245 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
4,376 KB
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 ll mod[2], mul[2];
    static vector<ll> pm[2];
	string s; int sz; vector<ll> hs[2];
	void init(string& s){
		this->s = s; sz = (int)s.size();
        rep(i,2){
            hs[i].resize(sz+1,0);
            if(pm[i].empty()) pm[i].push_back(1);
            rep(j,sz){
                hs[i][j+1] = (hs[i][j]*mul[i]+s[j])%mod[i];
            }
        }
	}
	pair<ll,ll> hash(int l, int r) {	//文字列sのインデックス[l,r)の部分文字列のハッシュ値
		if(l>=r) return make_pair(0,0);
        ll res[2];
        rep(i,2){
            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]) % mod[i];
        }
		return make_pair(res[0],res[1]);
	}
    pair<ll,ll> hash(string s) { init(s); return hash(0,(int)s.size()-1); }	//文字列s全体のハッシュ値
};
vector<ll> RH::pm[2];
ll RH::mod[2]={1000000007, 1000000009}, RH::mul[2]={10009, 10007};

int contain(RH& arg1, string& arg2)
{
    int res = 0;
	if(arg1.sz < len(arg2)){
		return res;
	}
	RH rh;
	rh.init(arg2);
	rep(i,arg1.sz-len(arg2)+1){
		if(arg1.hash(i,i+len(arg2)-1) == rh.hash(0,len(arg2)-1)){
			res++;
		}
	}
	return res;
}

map<pll,int> mp;

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