結果
問題 | No.430 文字列検索 |
ユーザー | ふーらくたる |
提出日時 | 2016-10-02 23:36:01 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 797 bytes |
コンパイル時間 | 544 ms |
コンパイル使用メモリ | 65,240 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-11-10 00:04:09 |
合計ジャッジ時間 | 4,066 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 208 ms
5,248 KB |
testcase_02 | TLE | - |
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; using ll = long long; vector<int> alpha_index[26]; vector<string> strs[26]; int main() { cin.tie(0); ios::sync_with_stdio(false); string s; int m; cin >> s; cin >> m; for (int i = 0; i < m; i++) { string c; cin >> c; strs[c[0] - 'A'].push_back(c); } for (int i = 0; i < s.size(); i++) { alpha_index[s[i] - 'A'].push_back(i); } ll ans = 0; for (int i = 0; i < 26; i++) { // 'A' + iを調べる for (auto idx : alpha_index[i]) { for (auto str : strs[i]) { string temp = s.substr(idx, str.size()); if (temp == str) ans++; } } } cout << ans << endl; return 0; }