結果
問題 | No.430 文字列検索 |
ユーザー | Rei Tsukada |
提出日時 | 2024-08-24 10:48:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 210 ms / 2,000 ms |
コード長 | 721 bytes |
コンパイル時間 | 698 ms |
コンパイル使用メモリ | 81,356 KB |
実行使用メモリ | 32,128 KB |
最終ジャッジ日時 | 2024-11-10 01:12:38 |
合計ジャッジ時間 | 2,225 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 210 ms
32,000 KB |
testcase_02 | AC | 15 ms
5,248 KB |
testcase_03 | AC | 18 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 201 ms
32,128 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 15 ms
6,400 KB |
testcase_11 | AC | 105 ms
8,320 KB |
testcase_12 | AC | 103 ms
8,320 KB |
testcase_13 | AC | 102 ms
8,320 KB |
testcase_14 | AC | 84 ms
6,272 KB |
testcase_15 | AC | 73 ms
5,248 KB |
testcase_16 | AC | 29 ms
5,248 KB |
testcase_17 | AC | 20 ms
5,248 KB |
ソースコード
#include <iostream> #include <string> #include <map> #include <vector> using namespace std; int main() { string S; cin >> S; int M; cin >> M; map<string, int> substring_count; int n = S.size(); // 全ての長さ10以下の部分文字列を数える for (int i = 0; i < n; i++) { string sub = ""; for (int j = i; j < n && j < i + 10; j++) { sub += S[j]; substring_count[sub]++; } } int ans = 0; for (int i = 0; i < M; i++) { string C; cin >> C; if (substring_count.find(C) != substring_count.end()) { ans += substring_count[C]; } } cout << ans << endl; return 0; }