結果
問題 | No.430 文字列検索 |
ユーザー | cormoran |
提出日時 | 2016-10-18 17:20:51 |
言語 | C++11 (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,291 bytes |
コンパイル時間 | 1,182 ms |
コンパイル使用メモリ | 167,560 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-11-10 00:10:39 |
合計ジャッジ時間 | 4,536 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,496 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using pii = pair<int,int>; using ll = long long; #define rep(i, j) for(int i=0; i < (int)(j); i++) #define repeat(i, j, k) for(int i = (j); i < (int)(k); i++) #define all(v) v.begin(),v.end() #define debug(x) cerr << #x << " : " << x << endl template<class T> bool set_min(T &a, const T &b) { return a > b ? a = b, true : false; } template<class T> bool set_max(T &a, const T &b) { return a < b ? a = b, true : false; } // vector template<class T> istream& operator >> (istream &is , vector<T> &v) { for(T &a : v) is >> a; return is; } template<class T> ostream& operator << (ostream &os , const vector<T> &v) { for(const T &t : v) os << "\t" << t; return os << endl; } // pair template<class T, class U> ostream& operator << (ostream &os , const pair<T, U> &v) { return os << "<" << v.first << ", " << v.second << ">"; } const int INF = 1 << 30; const ll INFL = 1LL << 60; typedef unsigned long long ull; const ull HashBase = 100000007; vector<ull> pow_base; vector<ull> build_rolling_hash(const string &s){ int n = s.size(); vector<ull> hash(n+1); pow_base.resize(n+1); hash[0] = 0; pow_base[0] = 1; rep(i, n){ hash[i+1] = hash[i] * HashBase + s[i]; pow_base[i+1] = pow_base[i] * HashBase; } return hash; } ull build_hash(const string &s) { ull base = 1; ull ret = 0; for(int i = s.size() - 1; i >= 0; i--) { ret += s[i] * base; base *= HashBase; } return ret; } // hash of (l,r] ( 1-based index) ull get_rolling_hash(const vector<ull> &hash,int l,int r){ return hash[r] - hash[l] * pow_base[r-l]; } class Solver { public: bool solve() { string s; cin >> s; int m; cin >> m; set<ull> hash; rep(i, m) { string c; cin >> c; hash.insert(build_hash(c)); } vector<ull> rh = build_rolling_hash(s); ll ans = 0; repeat(i, 1, s.size() + 1) { repeat(j, 1, i + 1) { ans += hash.count(get_rolling_hash(rh, j - 1, i)); } } cout << ans << endl; return 0; } }; int main() { cin.tie(0); ios::sync_with_stdio(false); Solver s; s.solve(); return 0; }