結果

問題 No.430 文字列検索
ユーザー planesplanes
提出日時 2024-01-21 16:43:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 1,950 bytes
コンパイル時間 1,811 ms
コンパイル使用メモリ 182,248 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-01-21 16:43:28
合計ジャッジ時間 3,020 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 63 ms
6,676 KB
testcase_02 AC 15 ms
6,676 KB
testcase_03 AC 15 ms
6,676 KB
testcase_04 AC 2 ms
6,676 KB
testcase_05 AC 1 ms
6,676 KB
testcase_06 AC 1 ms
6,676 KB
testcase_07 AC 2 ms
6,676 KB
testcase_08 AC 16 ms
6,676 KB
testcase_09 AC 2 ms
6,676 KB
testcase_10 AC 3 ms
6,676 KB
testcase_11 AC 42 ms
6,676 KB
testcase_12 AC 41 ms
6,676 KB
testcase_13 AC 41 ms
6,676 KB
testcase_14 AC 38 ms
6,676 KB
testcase_15 AC 33 ms
6,676 KB
testcase_16 AC 17 ms
6,676 KB
testcase_17 AC 16 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

  #include <bits/stdc++.h> 
using namespace std;
using ll =long long;
#define all(v) v.begin(),v.end()
 #define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)

ll INF=2e18;

class rolling_hash {
public:
	using u64 = std::uint_fast64_t;
	using size_type = std::uint_fast32_t;
	using i128 = __int128_t;

	static constexpr u64 MOD = (1uL << 61) - 1;
	static constexpr u64 base = 20200213;

	std::string str;
	std::vector<u64> hash_, pow;

private:
	static constexpr u64 mask30 = (1ul << 30) - 1;
	static constexpr u64 mask31 = (1ul << 31) - 1;

	u64 mul(i128 a, i128 b) const {
		i128 t = a * b;
		t = (t >> 61) + (t & MOD);
		
		if(t >= MOD) return t - MOD;
		return t;
	}
	size_type xorshift(size_type x) const {
		x ^= x << 13;
		x ^= x >> 17;
		x ^= x << 5;
		return x;
	}

public:
	rolling_hash(const rolling_hash &) = default;
	rolling_hash(rolling_hash&&) = default;

	rolling_hash() : str() {};
	rolling_hash(const std::string & str) : str(str) {
		hash_.resize(str.size() + 1, 0);
		pow.resize(str.size() + 1, 1);
		for(size_type i = 0; i < str.size(); i++) {
			hash_[i + 1] = mul(hash_[i], base) + xorshift(str[i] + 1);
			pow[i + 1] = mul(pow[i], base);
			if(hash_[i + 1] >= MOD) hash_[i + 1] -= MOD;
		}
	}

	u64 hash() const { return hash_.back(); }
	u64 hash(size_type l, size_type r) const {
		u64 ret = MOD + hash_[r] - mul(hash_[l], pow[r - l]);
		return ret < MOD ? ret : ret - MOD;
	}
	
	size_type size() const { return str.size(); }
};


int main() {
    ios::sync_with_stdio(false);
  cin.tie(0);
  
  
  string S;cin>>S;
  ll M;cin>>M;
  vector<string> C(M);
  for(ll i=0;i<M;i++) cin>>C[i];

  rolling_hash hash(S);
  map<ll,ll> Q;

  for(ll i=0;i<M;i++) {
    rolling_hash h(C[i]);
    Q[h.hash(0,C[i].size())]++;
  }

ll ans=0;

  for(ll i=0;i<S.size();i++) {
    for(ll j=0;j<10;j++) {
      ll val=hash.hash(i,i+j+1);
      if(Q.count(val)) ans+=Q[val];
    }
  }

  cout<<ans<<endl;
}


      


0