結果
問題 | No.430 文字列検索 |
ユーザー | kopricky |
提出日時 | 2018-06-30 03:55:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 264 ms / 2,000 ms |
コード長 | 2,786 bytes |
コンパイル時間 | 1,737 ms |
コンパイル使用メモリ | 175,224 KB |
実行使用メモリ | 28,092 KB |
最終ジャッジ日時 | 2024-11-10 00:19:25 |
合計ジャッジ時間 | 2,916 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 240 ms
28,092 KB |
testcase_02 | AC | 32 ms
5,248 KB |
testcase_03 | AC | 32 ms
5,352 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 264 ms
27,580 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 16 ms
5,760 KB |
testcase_11 | AC | 80 ms
8,932 KB |
testcase_12 | AC | 79 ms
9,060 KB |
testcase_13 | AC | 77 ms
8,936 KB |
testcase_14 | AC | 66 ms
7,400 KB |
testcase_15 | AC | 57 ms
6,636 KB |
testcase_16 | AC | 37 ms
5,484 KB |
testcase_17 | AC | 35 ms
5,352 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 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,len(s)); } //文字列s全体のハッシュ値 }; vector<ll> RH::pm[2]; ll 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; rh.init(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; ans += mp[cri.hash(vec[i])]; } cout << ans << "\n"; return 0; }