結果

問題 No.430 文字列検索
ユーザー plasma_eplasma_e
提出日時 2019-01-20 17:44:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 789 bytes
コンパイル時間 1,026 ms
コンパイル使用メモリ 96,028 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-11-10 00:22:08
合計ジャッジ時間 4,456 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<functional>
#include<set>
#include<map>
#include<string>

int main()
{
	std::string str;
	std::cin >> str;
	auto N = str.size();
	int M;
	std::cin >> M;
	int count = 0;
	for (int i = 0; i < M; ++i)
	{
		std::string C;
		std::cin >> C;
		std::size_t bhash = 0;
		std::size_t mod = 1;
		for (auto c : C)
		{
			bhash *= 26;
			bhash += c - 'A';
			mod *= 26;
		}
		std::size_t hash = 0;
		for (std::size_t k = 0; k < C.size() - 1; ++k)
		{
			hash *= 26;
			hash += str[k] - 'A';
		}
		for (std::size_t k = C.size() - 1; k < N; ++k)
		{
			hash *= 26;
			hash += str[k] - 'A';
			hash %= mod;
			if (hash == bhash)
			{
				++count;
			}
		}
	}
	std::cout << count << std::endl;
}
0