結果

問題 No.430 文字列検索
ユーザー 0w10w1
提出日時 2016-12-04 10:53:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 752 ms / 2,000 ms
コード長 760 bytes
コンパイル時間 1,647 ms
コンパイル使用メモリ 170,772 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-10 00:13:06
合計ジャッジ時間 9,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 741 ms
5,248 KB
testcase_02 AC 747 ms
5,248 KB
testcase_03 AC 739 ms
5,248 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 5 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 745 ms
5,248 KB
testcase_12 AC 742 ms
5,248 KB
testcase_13 AC 741 ms
5,248 KB
testcase_14 AC 742 ms
5,248 KB
testcase_15 AC 743 ms
5,248 KB
testcase_16 AC 740 ms
5,248 KB
testcase_17 AC 752 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef vector< int > vi;

const int BS = 311;
const int MOD7 = 1e9 + 7;

signed main(){
  string S; cin >> S;
  vi ph( S.size() + 1 );
  vi bspw( S.size() + 1 ); bspw[ 0 ] = 1;
  for( int i = 0; i < S.size(); ++i )
    ph[ i + 1 ] = ( 1LL * ph[ i ] * BS + S[ i ] ) % MOD7,
    bspw[ i + 1 ] = 1LL * bspw[ i ] * BS % MOD7;
  int M; cin >> M;
  int ans = 0;
  for( int i = 0; i < M; ++i ){
    string C; cin >> C;
    int hv = 0;
    for( int j = 0; j < C.size(); ++j )
      hv = ( 1LL * hv * BS + C[ j ] ) % MOD7;
    for( int j = C.size(); j <= S.size(); ++j )
      ans += hv == ( ( 1LL * ph[ j ] - 1LL * bspw[ C.size() ] * ph[ j - C.size() ] ) % MOD7 + MOD7 ) % MOD7; 
  }
  cout << ans << endl;
  return 0;
}
0