結果

問題 No.430 文字列検索
ユーザー aaaaaaaa
提出日時 2018-03-08 05:42:33
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 794 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 62,040 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-10 00:18:59
合計ジャッジ時間 12,466 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 223 ms
5,248 KB
testcase_02 AC 1,420 ms
5,248 KB
testcase_03 AC 790 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 RE -
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 1,422 ms
5,248 KB
testcase_12 AC 1,421 ms
5,248 KB
testcase_13 AC 1,430 ms
5,248 KB
testcase_14 AC 1,541 ms
5,248 KB
testcase_15 AC 1,424 ms
5,248 KB
testcase_16 AC 787 ms
5,248 KB
testcase_17 AC 734 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>

using namespace std;

#define StrLen(str) ((sizeof(str)/sizeof(str[0]))-1)

int nSubstr(const string &str, const string &sub) {
	int n = 0, idx = 0;
	while (true) {
		while (str[idx] != sub[0]) ++idx;
		if (idx > str.size()) break;
		if (sub.size() == 1) {
			++n; ++idx;
			continue;
		}
		bool found = true;
		for (int i = 1; i < sub.size(); ++i) {
			if (str[idx + i] != sub[i]) {
				found = false;
				break;
			}
		}
		if (found) ++n;
		++idx;
	}
	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;
}
0