結果
問題 | No.430 文字列検索 |
ユーザー | kopricky |
提出日時 | 2017-11-16 02:19:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 291 ms / 2,000 ms |
コード長 | 3,377 bytes |
コンパイル時間 | 1,489 ms |
コンパイル使用メモリ | 175,916 KB |
実行使用メモリ | 27,936 KB |
最終ジャッジ日時 | 2024-11-10 00:18:26 |
合計ジャッジ時間 | 3,074 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 291 ms
27,936 KB |
testcase_02 | AC | 14 ms
5,276 KB |
testcase_03 | AC | 14 ms
5,404 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 | 285 ms
27,548 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 16 ms
5,888 KB |
testcase_11 | AC | 70 ms
8,732 KB |
testcase_12 | AC | 69 ms
8,992 KB |
testcase_13 | AC | 71 ms
8,992 KB |
testcase_14 | AC | 55 ms
7,320 KB |
testcase_15 | AC | 43 ms
6,432 KB |
testcase_16 | AC | 18 ms
5,400 KB |
testcase_17 | AC | 16 ms
5,404 KB |
ソースコード
#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 svec(v) cout<<#v<<":";rep(kbrni,v.size())cout<<" "<<v[kbrni];cout<<endl #define sset(s) cout<<#s<<":";each(kbrni,s)cout<<" "<<kbrni;cout<<endl #define smap(m) cout<<#m<<":";each(kbrni,m)cout<<" {"<<kbrni.first<<":"<<kbrni.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<double> vd; typedef vector<P> vp; typedef vector<string> vs; const int MAX_N = 100005; struct RollingHash { static const ll mo0=1000000007,mo1=1000000009; static ll mul0,mul1; static const ll add0=1000010007,add1=1003333331; static vector<ll> pmo[2]; string s; int sz; vector<ll> hash_[2]; void init(string s) { this->s=s; sz=(int)s.size(); hash_[0].resize(sz+1,0),hash_[1].resize(sz+1,0); if(!mul0) mul0=10009+(((ll)&mul0)>>5)%259,mul1=10007+(((ll)&mul1)>>5)%257; if(pmo[0].empty()) pmo[0].pb(1),pmo[1].pb(1); rep(i,sz) hash_[0][i+1]=(hash_[0][i]*mul0+add0+s[i])%mo0; //hash_[0][i]はインデックス0~i-1までの文字列のハッシュ値 rep(i,sz) hash_[1][i+1]=(hash_[1][i]*mul1+add1+s[i])%mo1; } pair<ll,ll> hash(int l,int r) { //文字列sのインデックスl~rまでの部分文字列のハッシュ値 if(l>r) return make_pair(0,0); while(pmo[0].size()<r+2) pmo[0].pb(pmo[0].back()*mul0%mo0), pmo[1].pb(pmo[1].back()*mul1%mo1); return make_pair((hash_[0][r+1]+(mo0-hash_[0][l]*pmo[0][r+1-l]%mo0))%mo0, (hash_[1][r+1]+(mo1-hash_[1][l]*pmo[1][r+1-l]%mo1))%mo1); } pair<ll,ll> hash(string s) { init(s); return hash(0,(int)s.size()-1); } //文字列s全体のハッシュ値 static pair<ll,ll> concat(pair<ll,ll> L,pair<ll,ll> R,int RL) { //文字列L+Rのハッシュ値,RLはRの文字列の長さ while(pmo[0].size()<RL+2) pmo[0].pb(pmo[0].back()*mul0%mo0), pmo[1].pb(pmo[1].back()*mul1%mo1); return make_pair((R.first + L.first*pmo[0][RL])%mo0,(R.second + L.second*pmo[1][RL])%mo1); } }; vector<ll> RollingHash::pmo[2]; ll RollingHash::mul0,RollingHash::mul1; int contain(RollingHash& arg1, string& arg2) { int res = 0; if(arg1.sz < len(arg2)){ return res; } RollingHash 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; RollingHash 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]; RollingHash cri; ans += mp[cri.hash(vec[i])]; } cout << ans << "\n"; return 0; }