結果

問題 No.430 文字列検索
ユーザー veqccveqcc
提出日時 2019-07-21 12:58:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,784 bytes
コンパイル時間 1,150 ms
コンパイル使用メモリ 84,284 KB
実行使用メモリ 28,060 KB
最終ジャッジ日時 2023-09-02 18:06:17
合計ジャッジ時間 4,236 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,372 KB
testcase_01 WA -
testcase_02 AC 19 ms
5,164 KB
testcase_03 AC 19 ms
5,216 KB
testcase_04 AC 2 ms
4,368 KB
testcase_05 AC 2 ms
4,368 KB
testcase_06 AC 1 ms
4,368 KB
testcase_07 AC 2 ms
4,372 KB
testcase_08 AC 410 ms
27,608 KB
testcase_09 AC 2 ms
4,372 KB
testcase_10 AC 18 ms
5,996 KB
testcase_11 AC 100 ms
8,544 KB
testcase_12 AC 97 ms
8,624 KB
testcase_13 AC 101 ms
8,592 KB
testcase_14 AC 76 ms
7,012 KB
testcase_15 AC 60 ms
6,220 KB
testcase_16 AC 23 ms
5,168 KB
testcase_17 AC 22 ms
5,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
using namespace std;
typedef long long ll;

class RollingHash {
    const ll base = 9973;
    const vector <ll> mod = {999999937LL, 1000000007LL};
    string S;
    vector <ll> hash[2], pow[2];

public:
    RollingHash(const string &s) {
        S = s;
        int n = S.size();
        for (int i = 0; i < 2; i++) {
            hash[i].assign(n + 1, 0);
            pow[i].assign(n + 1, 1);
            for (int j = 0; j < n; j++) {
                hash[i][j + 1] = (hash[i][j] * base + S[j]) % mod[i];
                pow[i][j + 1] = pow[i][j] * base % mod[i];
            }
        }
    }

    // get hash of S[l:r]
    ll get(int l, int r, int id = 0) {
        ll res = hash[id][r] - hash[id][l] * pow[id][r - l] % mod[id];
        if (res < 0) res += mod[id];
        return res;
    }
};


// verified
//   http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=ALDS1_14_B&lang=jp
void AOJ_ALDS1_14_B() {
    string T, P;
    cin >> T >> P;
    RollingHash rh1(T), rh2(P);
    for (int i = 0; i + P.size() <= T.size(); i++) {
        if (rh1.get(i, i + P.size()) == rh2.get(0, P.size())) {
            cout << i << "\n";
        }
    }
}


// verified
//   https://yukicoder.me/problems/no/430
void yuki430() {
    string S, C;
    int M;
    cin >> S >> M;
    RollingHash rh(S);
    map <ll, int> mp;
    for (int l = 0; l < S.size(); l++) {
        for (int r = 1; r <= 10; r++) {
            if (l + r > S.size()) continue;
            mp[rh.get(l, l + r)]++;
        }
    }
    int ans = 0;
    for (int m = 0; m < M; m++) {
        cin >> C;
        RollingHash rh1(C);
        ans += mp[rh1.get(0, C.size())];
    }
    cout << ans << "\n";
}

int main() {
    // AOJ_ALDS1_14_B();
    yuki430();
    return 0;
}
0