結果
問題 |
No.430 文字列検索
|
ユーザー |
|
提出日時 | 2016-10-02 23:57:16 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 14 |
ソースコード
#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; }