結果

問題 No.430 文字列検索
ユーザー nvt4snvt4s
提出日時 2019-09-03 02:07:56
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 3,987 bytes
コンパイル時間 1,270 ms
コンパイル使用メモリ 99,680 KB
実行使用メモリ 9,972 KB
最終ジャッジ日時 2023-08-23 08:08:00
合計ジャッジ時間 2,580 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,380 KB
testcase_01 AC 61 ms
9,792 KB
testcase_02 AC 59 ms
9,748 KB
testcase_03 AC 57 ms
9,744 KB
testcase_04 AC 3 ms
7,520 KB
testcase_05 AC 2 ms
7,424 KB
testcase_06 AC 2 ms
7,572 KB
testcase_07 AC 2 ms
7,436 KB
testcase_08 AC 49 ms
9,736 KB
testcase_09 AC 2 ms
7,548 KB
testcase_10 AC 5 ms
7,648 KB
testcase_11 AC 61 ms
9,940 KB
testcase_12 AC 62 ms
9,972 KB
testcase_13 AC 62 ms
9,748 KB
testcase_14 AC 60 ms
9,792 KB
testcase_15 AC 60 ms
9,924 KB
testcase_16 AC 61 ms
9,796 KB
testcase_17 AC 62 ms
9,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <iostream>
#include <istream>
#include <iterator>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <vector>
#include <tuple>
#include <iomanip>
#include <cstring>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef vector<ll> vec;
typedef vector<vec> mat;
#define rep(i, n) for(ll i = 0; i < (n); i++)
#define revrep(i, n) for(ll i = (n-1); i >= 0; i--)
#define pb push_back
#define f first
#define s second
ll max(ll a, ll b){return (a > b) ? a : b;}
ll min(ll a, ll b){return (a < b) ? a : b;}
ll max3(ll a, ll b, ll c){return max(a, max(b, c));};
ll min3(ll a, ll b, ll c){return min(a, min(b, c));};
ll max4(ll a, ll b, ll c, ll d){return max(max(a, b), min(c, d));};
ll min4(ll a, ll b, ll c, ll d){return min(min(a, b), min(c, d));};
ll max5(ll a, ll b, ll c, ll d, ll e){return max(max(a, b), max3(c, d, e));};
ll min5(ll a, ll b, ll c, ll d, ll e){return min(min(a, b), min3(c, d, e));};

const ll INFL = 1LL << 60;//10^18 = 2^60
const int INF = 1 << 30;//10^9
ll MOD = 1000000007;
//ll MOD = 998244353;
vector<ll> dy = {0, 0, 1, -1, 1, 1, -1, -1, 0};
vector<ll> dx = {1, -1, 0, 0, 1, -1, 1, -1, 0};

ll pow_long(ll x, ll k){
  ll res = 1;
  while(k > 0){
    if(k % 2) res *= x;
    x *= x;
    k /= 2;
  }
  return res;
}
ll pow_mod(ll x, ll k){
  x %= MOD; x += MOD; x %= MOD;
  ll res = 1;
  while(k > 0){
    if(k % 2){
      res *= x; res %= MOD;
    }
    x *= x; x %= MOD;
    k /= 2;
  }
  return res;
}

ll inverse(ll x){return pow_mod(x, MOD - 2);};

ll gcd(ll a, ll b){
    if(b == 0) return a;
    return gcd(b, a % b);
}

ll lcm(ll x, ll y){return x / gcd(x, y) * y;};

ll kai_mod(ll x){
  if(x == 0) return 1;
  return x * kai_mod(x-1) % MOD;
}

/*
//コンビネーション
const int MAXcomb = 200010;
ll fac[MAXcomb], finv[MAXcomb], inv[MAXcomb];
//facはn!,finvは1/n!
//invは逆元
void COMinit(){
    fac[0] = fac[1] = 1;
    finv[0] = finv[1] = 1;
    inv[1] = 1;
    for(int i = 2; i < MAXcomb; i++){
        fac[i] = fac[i-1] * i % MOD;
        inv[i] = MOD - inv[MOD%i] * (MOD/i) % MOD;
        finv[i] = finv[i-1] * inv[i] % MOD;
    }
}
ll comb(int n, int k){
    if(n < k) return 0;
    if(n < 0 || k < 0) return 0;
    return fac[n] * finv[k] % MOD * finv[n-k] % MOD;
}
*/

int n, k;
const int MAX_N = 1000010;
int Rank[MAX_N + 1];
int tmp[MAX_N + 1];

 //(rank[i], rank[i+k])と(rank[j], rank[j+k])を比較
 bool compare_sa(int i, int j){
   if(Rank[i] != Rank[j]) return Rank[i] < Rank[j];
   else{
     int ri = i + k <= n ? Rank[i + k] : -1;
     int rj = j + k <= n ? Rank[j + k] : -1;
     return ri < rj;
   }
 }

//文字列の接尾辞配列を構築
void construst_sa(string S, int *sa){
  n = S.length();
  //最初は1文字、ランクは文字コードにすればよい
  for(int i = 0; i <= n; i++){
    sa[i] = i;
    Rank[i] = i < n ? S[i] : -1;
  }

  //k文字についてソートされているところから、2k文字でソートする
  for(k = 1; k <= n; k*=2){
    sort(sa, sa + n + 1, compare_sa);

    //いったんtmpに次のランクを計算し、それからRankに移す
    tmp[sa[0]] = 0;
    for(int i = 1; i <= n; i++){
      tmp[sa[i]] = tmp[sa[i - 1]] + (compare_sa(sa[i - 1], sa[i]) ? 1 : 0);
    }
    for(int i = 0; i <= n; i++){
      Rank[i] = tmp[i];
    }
  }
}

int contain(string S, int *sa, string T){
  int a = 0, b = S.length();
  while(b - a > 1){
    int c = (a + b) / 2;
    //Sのsa[c]文字目から|T|文字と比較
    if(S.compare(sa[c], T.length(), T) < 0) a = c;
    else b = c;
  }
  int res = 0;
  while(b <= n){
    if(S.compare(sa[b], T.length(), T) == 0) res++;
    else break;
    b++;
  }
  return res;
}

string S;
int sa[1000010];

int main(){
  cin >> S;
  construst_sa(S, sa);
  ll M;
  cin >> M;
  ll cnt = 0;
  rep(i, M){
    string T;
    cin >> T;
    cnt += contain(S, sa, T);
  }
  cout << cnt << endl;
}
0