結果
問題 | No.430 文字列検索 |
ユーザー | arktan763 |
提出日時 | 2019-09-18 13:36:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 14 ms / 2,000 ms |
コード長 | 4,689 bytes |
コンパイル時間 | 1,844 ms |
コンパイル使用メモリ | 177,064 KB |
実行使用メモリ | 11,532 KB |
最終ジャッジ日時 | 2024-11-10 00:32:52 |
合計ジャッジ時間 | 2,445 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 13 ms
11,532 KB |
testcase_02 | AC | 9 ms
5,724 KB |
testcase_03 | AC | 8 ms
5,596 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 4 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 13 ms
7,712 KB |
testcase_12 | AC | 14 ms
7,712 KB |
testcase_13 | AC | 12 ms
7,616 KB |
testcase_14 | AC | 11 ms
7,624 KB |
testcase_15 | AC | 10 ms
7,620 KB |
testcase_16 | AC | 9 ms
7,600 KB |
testcase_17 | AC | 10 ms
7,616 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long // #define double long double #define FOR(i, a, b) for(ll i = (a); i < (b); ++i) #define FORR(i, a, b) for(ll i = (a); i > (b); --i) #define REP(i, n) for(ll i = 0; i < (n); ++i) #define REPR(i, n) for(ll i = n; i >= 0; i--) #define FOREACH(x, a) for(auto &(x) : (a)) #define VECCIN(x) \ for(auto &youso_ : (x)) cin >> youso_ #define bitcnt __builtin_popcount #define SZ(x) ((ll)(x).size()) #define fi first #define se second #define All(a) (a).begin(), (a).end() #define rAll(a) (a).rbegin(), (a).rend() template <typename T = long long> inline T IN() { T x; cin >> x; return (x); } inline void CIN() {} template <class Head, class... Tail> inline void CIN(Head &&head, Tail &&... tail) { cin >> head; CIN(move(tail)...); } #define CCIN(...) \ char __VA_ARGS__; \ CIN(__VA_ARGS__) #define DCIN(...) \ double __VA_ARGS__; \ CIN(__VA_ARGS__) #define LCIN(...) \ ll __VA_ARGS__; \ CIN(__VA_ARGS__) #define SCIN(...) \ string __VA_ARGS__; \ CIN(__VA_ARGS__) #define Yes(a) cout << (a ? "Yes" : "No") << "\n" #define YES(a) cout << (a ? "YES" : "NO") << "\n" #define Printv(v) \ { \ FOREACH(x, v) { cout << x << " "; } \ cout << "\n"; \ } template <typename T = string> inline void eputs(T s) { cout << s << "\n"; exit(0); } template <typename A, size_t N, typename T> void Fill(A (&array)[N], const T &val) { std::fill((T *)array, (T *)(array + N), val); } template <typename T> using PQG = priority_queue<T, vector<T>, greater<T>>; template <typename T> using PQ = priority_queue<T>; typedef long long ll; typedef vector<ll> VL; typedef vector<VL> VVL; typedef pair<ll, ll> PL; typedef vector<PL> VPL; typedef vector<bool> VB; typedef vector<double> VD; typedef vector<string> VS; const int INF = 1e9; const int MOD = 1e9 + 7; // const int MOD = 998244353; const ll LINF = 5e18; // const double PI = atan(1.0) * 4.0; const ll dx[] = {1, 1, 0, -1, -1, -1, 0, 1}; const ll dy[] = {0, 1, 1, 1, 0, -1, -1, -1}; #define PI 3.141592653589793238 template <size_t X> struct Trie { struct Node { char c; array<int, X> nxt; vector<int> idxs; int idx; Node(char c) : c(c), idx(-1) { fill(nxt.begin(), nxt.end(), -1); } }; using F = function<int(char)>; vector<Node> v; F conv; Trie(F conv, char c = '$') : conv(conv) { v.emplace_back(c); } void add(const string &s, int x) { int pos = 0; for(int i = 0; i < (int)s.size(); i++) { int k = conv(s[i]); if(~v[pos].nxt[k]) { pos = v[pos].nxt[k]; continue; } int npos = v.size(); v[pos].nxt[k] = npos; v.emplace_back(s[i]); pos = npos; } v[pos].idx = x; v[pos].idxs.emplace_back(x); } int find(const string &s) { int pos = 0; for(int i = 0; i < (int)s.size(); i++) { int k = conv(s[i]); if(v[pos].nxt[k] < 0) return -1; pos = v[pos].nxt[k]; } return pos; } int find(int pos, char c) { return v[pos].nxt[conv(c)]; } int idx(int pos) { return pos < 0 ? -1 : v[pos].idx; } vector<int> idxs(int pos) { return pos < 0 ? vector<int>() : v[pos].idxs; } }; signed main() { SCIN(S); LCIN(M); auto f = [](char c) { return c - 'A'; }; Trie<26> trie(f); VS C(M); ll n = 0; REP(i, M) { cin >> C[i]; trie.add(C[i], i); n = max(n, (ll)C[i].length()); } ll N = S.length(); ll ans = 0; REP(i, N) { ll pos = 0; REP(j, n) { if(i + j >= N) continue; pos = trie.find(pos, S[i + j]); if(pos < 0) break; ll idx = trie.idx(pos); if(idx >= 0) ans++; } } cout << ans << "\n"; }