結果

問題 No.430 文字列検索
ユーザー uenokuuenoku
提出日時 2017-01-15 17:43:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 762 bytes
コンパイル時間 1,240 ms
コンパイル使用メモリ 88,704 KB
実行使用メモリ 35,456 KB
最終ジャッジ日時 2024-11-10 00:13:43
合計ジャッジ時間 2,633 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,656 KB
testcase_01 AC 230 ms
35,456 KB
testcase_02 AC 19 ms
7,040 KB
testcase_03 AC 22 ms
7,040 KB
testcase_04 AC 4 ms
6,528 KB
testcase_05 AC 3 ms
6,656 KB
testcase_06 AC 4 ms
6,656 KB
testcase_07 AC 4 ms
6,656 KB
testcase_08 AC 233 ms
35,072 KB
testcase_09 AC 4 ms
6,656 KB
testcase_10 AC 18 ms
9,472 KB
testcase_11 AC 124 ms
11,520 KB
testcase_12 AC 118 ms
11,648 KB
testcase_13 AC 120 ms
11,520 KB
testcase_14 AC 94 ms
9,728 KB
testcase_15 AC 82 ms
8,576 KB
testcase_16 AC 32 ms
7,168 KB
testcase_17 AC 24 ms
6,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <vector>
#define rep(i, n) for (int i = 0; i < (n); i++)
#define rrep(i, n) for (int i = (n)-1; i >= 0; i--)
#define pb push_back
#define all(a) (a).begin(), (a).end()
using namespace std;
typedef long long int lli;
lli MOD = 1000000007;
int main()
{
    string s;
    int m;
    cin >> s;
    cin >> m;
    map<string, int> mp;
    string p[100005];
    rep(i, m)
    {
        cin >> p[i];
    }
    lli ans = 0;
    for (int i = 0; i < s.size(); i++) {
        for (int j = 1; j <= 10 && i + j <= s.size(); j++) {
            mp[s.substr(i, j)]++;
        }
    }
    rep(i, m)
    {
        ans += mp[p[i]]++;
    }
    cout << ans << endl;
}
0