結果
問題 | No.430 文字列検索 |
ユーザー | ahe100 |
提出日時 | 2019-03-14 20:15:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 682 ms / 2,000 ms |
コード長 | 1,220 bytes |
コンパイル時間 | 1,112 ms |
コンパイル使用メモリ | 73,584 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-10 00:23:05 |
合計ジャッジ時間 | 7,832 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 675 ms
5,248 KB |
testcase_02 | AC | 670 ms
5,248 KB |
testcase_03 | AC | 673 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 4 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 3 ms
5,248 KB |
testcase_11 | AC | 671 ms
5,248 KB |
testcase_12 | AC | 675 ms
5,248 KB |
testcase_13 | AC | 675 ms
5,248 KB |
testcase_14 | AC | 669 ms
5,248 KB |
testcase_15 | AC | 673 ms
5,248 KB |
testcase_16 | AC | 670 ms
5,248 KB |
testcase_17 | AC | 682 ms
5,248 KB |
ソースコード
#include<cstdio> #include<cstring> #include<vector> #include<queue> #include<stack> #include<algorithm> #include<cmath> #include<climits> #include<string> #include<set> #include<numeric> #include<map> #include<iostream> using namespace std; #define rep(i,n) for(int i = 0;i<((int)(n));i++) #define reg(i,a,b) for(int i = ((int)(a));i<=((int)(b));i++) #define irep(i,n) for(int i = ((int)(n)-1);i>=0;i--) #define ireg(i,a,b) for(int i = ((int)(b));i>=((int)(a));i--) typedef long long ll; typedef pair<ll, ll> mp; /* */ ll hash26(string &c,ll mod=1e18){ ll hs=0,mul=1; rep(i,c.size()){ hs=hs+mul*(c[i]-'A'); mul*=26; } return hs; } ll rolling_hash(string &s,string &c,ll mod=1e18){ if(c.size()>s.size())return 0; ll hs=0,ans=0,mul=1,len=c.size(),comp=hash26(c); rep(i,len){ hs=hs+mul*(s[i]-'A'); mul*=26; } mul/=26; if(hs==comp)ans++;//衝突が不安ならここで検証する rep(i,s.size()-len){ hs=(hs-(s[i]-'A'))/26; hs=hs+mul*(s[i+len]-'A'); if(hs==comp){ ans++;//衝突が不安ならここで検証する } } return ans; } string s,c[5010]; ll m,ans=0; int main(void){ cin>>s>>m; rep(i,m)cin>>c[i]; rep(i,m){ ans+=rolling_hash(s,c[i]); } cout<<ans<<endl; return 0; }