結果
問題 | No.430 文字列検索 |
ユーザー | sinsincoscos |
提出日時 | 2019-08-15 22:52:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,550 bytes |
コンパイル時間 | 646 ms |
コンパイル使用メモリ | 72,824 KB |
実行使用メモリ | 11,684 KB |
最終ジャッジ日時 | 2024-11-10 00:28:48 |
合計ジャッジ時間 | 4,079 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
#include <iostream> #include <vector> using namespace std; const int MAX = 500000, MS = 2; const long long mod[] = {999999937LL, 1000000007LL}, base = 9973; struct rolling_hash { int n; vector<long long> hs[MS], pw[MS]; rolling_hash(){} rolling_hash(const string &s) { n = s.size(); for (int i = 0; i < MS; i++) { hs[i].assign(n+1,0); pw[i].assign(n+1,0); hs[i][0] = 0; pw[i][0] = 1; for (int j = 0; j < n; j++) { pw[i][j+1] = pw[i][j]*base%mod[i]; hs[i][j+1] = (hs[i][j]*base+s[j])%mod[i]; } } } long long hash(int l, int r, int i) { return ((hs[i][r]-hs[i][l]*pw[i][r-l])%mod[i]+mod[i])%mod[i]; } bool match(int l1, int r1, int l2, int r2) { bool ret = 1; for (int i = 0; i < MS; i++) ret &= hash(l1,r1,i)==hash(l2,r2,i); return ret; } bool match(int l, int r, long long h[]) { bool ret = 1; for (int i = 0; i < MS; i++) ret &= hash(l,r,i)==h[i]; return ret; } }; int main(){ string S; cin >> S; rolling_hash rh(S); int M; cin >> M; int ans = 0; for(int i=0;i<M;i++){ string C; cin >> C; rolling_hash now(C); for(int j=0;j<S.size()-C.size()+1;j++){ bool ok = true; for(int k=0;k<2;k++){ if(rh.hash(j,j+C.size(),k)!=now.hash(0,C.size(),k)) ok = false; } ans += ok; } } cout << ans << endl; }