結果

問題 No.430 文字列検索
ユーザー plasma_eplasma_e
提出日時 2019-01-20 17:53:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 962 ms
コンパイル使用メモリ 104,056 KB
実行使用メモリ 26,368 KB
最終ジャッジ日時 2024-11-10 00:21:50
合計ジャッジ時間 2,533 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 254 ms
26,368 KB
testcase_02 AC 9 ms
5,248 KB
testcase_03 AC 10 ms
5,248 KB
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 2 ms
5,248 KB
testcase_08 AC 241 ms
26,240 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 13 ms
5,632 KB
testcase_11 AC 76 ms
7,424 KB
testcase_12 AC 73 ms
7,552 KB
testcase_13 AC 74 ms
7,552 KB
testcase_14 AC 56 ms
5,760 KB
testcase_15 AC 44 ms
5,248 KB
testcase_16 AC 13 ms
5,248 KB
testcase_17 AC 12 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

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;
	std::map<std::size_t, int>hash_count;
	for (std::size_t i = 0; i < N; ++i)
	{
		std::size_t hash = 0;
		for (std::size_t k = 0; i + k < N&&k < 10; ++k)
		{
			hash *= 27;
			hash += str[i + k] - 'A' + 1;
			++hash_count[hash];
		}
	}
	for (int i = 0; i < M; ++i)
	{
		std::string C;
		std::cin >> C;
		std::size_t hash = 0;
		for (auto c : C)
		{
			hash *= 27;
			hash += c - 'A' + 1;
		}
		count += hash_count[hash];
	}
	std::cout << count << std::endl;
}
0