結果

問題 No.430 文字列検索
ユーザー shung11260shung11260
提出日時 2019-09-03 15:46:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 944 ms / 2,000 ms
コード長 1,573 bytes
コンパイル時間 511 ms
コンパイル使用メモリ 61,408 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-10 00:30:39
合計ジャッジ時間 10,039 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 886 ms
5,248 KB
testcase_02 AC 867 ms
5,248 KB
testcase_03 AC 889 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 7 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 906 ms
5,248 KB
testcase_12 AC 944 ms
5,248 KB
testcase_13 AC 885 ms
5,248 KB
testcase_14 AC 875 ms
5,248 KB
testcase_15 AC 872 ms
5,248 KB
testcase_16 AC 881 ms
5,248 KB
testcase_17 AC 882 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>

using namespace std;

const long long int BASE = 31; //BASE=26だとハッシュの衝突を起こしている説あり
const long long int MOD = 100000007;

struct RollingHash {
    vector<long long int> hash;
    vector<long long int> power;
    
    RollingHash(string str) : hash(str.size()+1), power(str.size()+1) {
        long long int ch;
        hash[0] = 0;
        power[0] = 1;
        
        for(int i=0; i<str.size(); i++) {
            ch = str[i];
            ch %= BASE;
            
            power[i+1] = (power[i]*BASE)%MOD;
            hash[i+1] = (hash[i]*BASE + ch)%MOD;
        }
    }
    
    long long int get_hash(int left, int right) {
        return ((hash[right]-hash[left]*power[right-left])%MOD+MOD)%MOD;
    }
};

int main() {
    string str;
    cin >> str;
    int str_size=str.size();
    
    RollingHash rh_str(str);
    
    int M;
    cin >> M;
    int ans=0;
    for(int i=0; i<M; i++) {
        string cmp;
        cin >> cmp;
        int cmp_size=cmp.size();
        
        RollingHash rh_cmp(cmp);

        for(int j=0; j+cmp_size<str_size+1; j++) {
            // cout << j << ", " << cmp_size << endl;
            // cout << "str[" << j << "] - str[" << j+cmp_size-1 << "] rh = "\
            << rh_str.get_hash(j, j+cmp_size) << endl;
            // cout << "cmp rh = " << rh_cmp.get_hash(0, cmp_size) << endl;
            if(rh_str.get_hash(j, j+cmp_size)==rh_cmp.get_hash(0, cmp_size)) ans++;
        }
    }
    
    cout << ans << endl;

    return 0;
    
}
0