結果
問題 | No.430 文字列検索 |
ユーザー | aaaa |
提出日時 | 2018-03-08 06:59:44 |
言語 | C++11 (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,065 bytes |
コンパイル時間 | 720 ms |
コンパイル使用メモリ | 65,276 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-11-10 00:19:00 |
合計ジャッジ時間 | 8,649 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 6 TLE * 5 |
ソースコード
#include <iostream> #include <string> #include <vector> using namespace std; // subの先頭の文字と一致するstrのインデックスのリストを返却する vector<int> findIndex(const string &str, const string &sub) { vector<int> ret; int ub = str.size() - sub.size() + 1; for (int idx = 0; idx < ub; ++idx) { if (str[idx] == sub[0]) { ret.push_back(idx); } } return ret; } // strに含まれるsubの数を返却する int nSubstr(const string &str, const string &sub) { int n = 0; vector<int> idxs = findIndex(str, sub); for (int idx : idxs) { if (sub.size() == 1) { ++n; continue; } bool found = true; for (int i = 1; i < sub.size(); ++i) { if (str[idx + i] != sub[i]) { found = false; break; } } if (found) ++n; } return n; } int main () { int count = 0; string str; vector<string> subs; int n; cin >> str; cin >> n; for (int i = 0; i < n; ++i) { string tmp; cin >> tmp; subs.push_back(tmp); } for (string sub : subs) { count += nSubstr(str, sub); } cout << count << endl; }