結果

問題 No.430 文字列検索
ユーザー はまやんはまやんはまやんはまやん
提出日時 2016-10-02 23:20:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 1,493 ms
コンパイル使用メモリ 176,276 KB
実行使用メモリ 32,512 KB
最終ジャッジ日時 2024-11-10 00:03:35
合計ジャッジ時間 3,351 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 275 ms
32,512 KB
testcase_02 AC 25 ms
5,248 KB
testcase_03 AC 26 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 254 ms
32,128 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 20 ms
6,528 KB
testcase_11 AC 126 ms
8,704 KB
testcase_12 AC 125 ms
8,704 KB
testcase_13 AC 118 ms
8,704 KB
testcase_14 AC 96 ms
6,656 KB
testcase_15 AC 81 ms
5,632 KB
testcase_16 AC 38 ms
5,248 KB
testcase_17 AC 30 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=a;i<b;i++)


string S;
int M;
string C[5010];
map<string, int> cnt;
//-----------------------------------------------------------------
int main() {
	cin >> S >> M;
	rep(i, 0, M) cin >> C[i];

	int N = S.length();
	rep(i, 0, N) {
		string s = "";

		rep(len, 1, 11) {
			int j = i - len + 1;
			if (j < 0) break;
			s = S[j] + s;
			cnt[s]++;
		}
	}

	int ans = 0;
	rep(i, 0, M) ans += cnt[C[i]];
	cout << ans << endl;
}
0