結果
問題 | No.430 文字列検索 |
ユーザー | ikd |
提出日時 | 2016-10-03 11:38:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 777 bytes |
コンパイル時間 | 674 ms |
コンパイル使用メモリ | 71,396 KB |
実行使用メモリ | 6,528 KB |
最終ジャッジ日時 | 2024-11-10 00:08:10 |
合計ジャッジ時間 | 2,464 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 136 ms
6,528 KB |
testcase_02 | AC | 8 ms
5,248 KB |
testcase_03 | AC | 8 ms
5,248 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 132 ms
6,512 KB |
testcase_09 | RE | - |
testcase_10 | AC | 9 ms
5,248 KB |
testcase_11 | AC | 50 ms
5,504 KB |
testcase_12 | AC | 50 ms
5,760 KB |
testcase_13 | AC | 51 ms
5,888 KB |
testcase_14 | AC | 38 ms
5,248 KB |
testcase_15 | AC | 29 ms
5,248 KB |
testcase_16 | AC | 11 ms
5,248 KB |
testcase_17 | AC | 10 ms
5,248 KB |
ソースコード
#include <iostream> #include<map> using namespace std; #define int long long int powpow(int a, int b){ int ret=1; for(int i=0; i<b; i++){ ret*=a; } return ret; } int calc(string t){ int ret=0; for(int i=0; i<t.size(); i++){ ret+=(t[i]-'A')*powpow(26, i); } return ret; } signed main() { string S; cin>> S; int M; cin>> M; string C[M]; for(int i=0; i<M; i++) cin>> C[i]; int ans=0; for(int len=1; len<=10; len++){ int ha=calc(S.substr(0, len)); map<int, int> memo; for(int k=0; k<S.size()-len; k++){ memo[ha]++; ha-=S[k]-'A'; ha/=26; ha+=(S[k+len]-'A')*powpow(26, len-1); } memo[ha]++; for(int k=0; k<M; k++){ if(C[k].size()!=len) continue; ans+=memo[calc(C[k])]; } } cout<< ans<< endl; return 0; }