結果

問題 No.430 文字列検索
ユーザー imulanimulan
提出日時 2016-10-02 23:57:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 761 bytes
コンパイル時間 1,399 ms
コンパイル使用メモリ 175,652 KB
実行使用メモリ 33,528 KB
最終ジャッジ日時 2024-11-10 00:05:37
合計ジャッジ時間 2,720 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 175 ms
33,484 KB
testcase_02 AC 23 ms
5,248 KB
testcase_03 AC 25 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 193 ms
33,528 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 10 ms
6,016 KB
testcase_11 AC 56 ms
8,036 KB
testcase_12 AC 55 ms
8,032 KB
testcase_13 AC 56 ms
7,912 KB
testcase_14 AC 47 ms
6,008 KB
testcase_15 AC 43 ms
5,248 KB
testcase_16 AC 34 ms
5,248 KB
testcase_17 AC 30 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr)
#define all(x) (x).begin(),(x).end()
#define pb push_back
#define fi first
#define se second

int main()
{
    string s;
    int m;
    cin >>s >>m;

    int S=s.size();
    unordered_map<string,int> ct;
    rep(i,S)
    {
        for(int j=1; j<=10; ++j)
        {
            if(i+j-1>=S) break;

            string t=s.substr(i,j);
            if(ct.find(t) == ct.end()) ct[t]=1;
            else ++ct[t];
        }
    }

    ll ans=0;
    rep(i,m)
    {
        string c;
        cin >>c;
        ans+=ct[c];
    }
    cout << ans << endl;
    return 0;
}
0