結果
問題 | No.430 文字列検索 |
ユーザー | nmnmnmnmnmnmnm |
提出日時 | 2016-04-03 23:30:11 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 139 ms / 2,000 ms |
コード長 | 1,319 bytes |
コンパイル時間 | 2,663 ms |
コンパイル使用メモリ | 100,928 KB |
実行使用メモリ | 7,040 KB |
最終ジャッジ日時 | 2024-11-10 00:00:51 |
合計ジャッジ時間 | 4,456 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 139 ms
7,040 KB |
testcase_02 | AC | 19 ms
6,816 KB |
testcase_03 | AC | 19 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 137 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 11 ms
6,824 KB |
testcase_11 | AC | 64 ms
6,820 KB |
testcase_12 | AC | 67 ms
6,820 KB |
testcase_13 | AC | 65 ms
6,816 KB |
testcase_14 | AC | 52 ms
6,820 KB |
testcase_15 | AC | 43 ms
6,820 KB |
testcase_16 | AC | 22 ms
6,816 KB |
testcase_17 | AC | 20 ms
6,820 KB |
ソースコード
#include <algorithm> #include <cfloat> #include <climits> #include <cmath> #include <complex> #include <cstdio> #include <cstdlib> #include <cstring> #include <functional> #include <iostream> #include <map> #include <memory> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <utility> #include <vector> using namespace std; #define sz size() #define pb push_back #define mp make_pair #define fi first #define se second #define all(c) (c).begin(), (c).end() #define rep(i,a,b) for(int i=(a);i<(b);++i) #define clr(a, b) memset((a), (b) ,sizeof(a)) #define MOD 1000000007 string s; int f(int n, vector<string> v){ int ret = 0; map<long long, int> ma; rep(i,0,v.sz){ long long key = 0; string s1 = v[i]; rep(j,0,s1.sz){ key += (s1[j]-'A')*pow(26,j); } ma[key]++; } long long key = 0; rep(i,0,n){ key += (s[i]-'A')*pow(26,i); } rep(i,n,s.sz){ ret += ma[key]; key /= 26; key += (s[i]-'A')*pow(26,n-1); } ret += ma[key]; return ret; } int main(){ cin>>s; int m; cin>>m; vector<vector<string> > v(11,vector<string>()); rep(i,0,m){ string s1; cin>>s1; v[s1.sz].pb(s1); } int ans = 0; rep(i,1,11){ if(i<=s.sz){ ans += f(i,v[i]); } } cout << ans << endl; return 0; }