結果

問題 No.430 文字列検索
ユーザー mbanmban
提出日時 2017-02-09 13:58:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 620 ms / 2,000 ms
コード長 879 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 71,436 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-10 00:14:14
合計ジャッジ時間 7,266 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 614 ms
6,820 KB
testcase_02 AC 607 ms
6,816 KB
testcase_03 AC 611 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 5 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 620 ms
6,816 KB
testcase_12 AC 617 ms
6,820 KB
testcase_13 AC 612 ms
6,816 KB
testcase_14 AC 616 ms
6,820 KB
testcase_15 AC 610 ms
6,816 KB
testcase_16 AC 617 ms
6,820 KB
testcase_17 AC 609 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<map>

#define ABC "ABCDEFGHIJKLMNOPQRSTUVWXYZ"

using namespace std;

string s;
int n;
string *c;
int d[100000];
unsigned int i, j, k, anser = 0;



void scan() {
	cin >> s;
	cin >> n;
	c = new string[n];
	for (i = 0; i < n; i++)
	{
		cin >> c[i];
	}

}

long long tolong(string ss) {
	long long result = 0;
	long long p = 1;
	for (j = 0; j < ss.size(); j++)
	{
		result += d[ss[j]] * p;
		p *= 26;
	}
	return result;
}


int main(void) {
	scan();
	for (i = 0; i < 26; i++)
	{
		d[ABC[i]] = i;
	}
	for (i = 0; i < n; i++)
	{
		long long search = tolong(c[i]);
		long long p = 1, l = 0;
		for (j = 0; j < c[i].size() - 1; j++)
		{
			l += d[s[j]] * p;
			p *= 26;
		}
		for (j = c[i].size() - 1; j < s.size(); j++)
		{
			l += d[s[j]] * p;
			if (l == search) {
				anser++;
			}
			l /= 26;
		}
	}
	cout << anser << endl;
	return 0;
}
0