結果

問題 No.2626 Similar But Different Name
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2024-01-02 17:38:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 349 ms / 3,000 ms
コード長 1,164 bytes
コンパイル時間 1,997 ms
コンパイル使用メモリ 109,312 KB
実行使用メモリ 55,560 KB
最終ジャッジ日時 2024-09-27 17:49:26
合計ジャッジ時間 9,455 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 4 ms
6,944 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 345 ms
55,508 KB
testcase_19 AC 57 ms
27,372 KB
testcase_20 AC 51 ms
27,388 KB
testcase_21 AC 51 ms
27,340 KB
testcase_22 AC 329 ms
45,112 KB
testcase_23 AC 332 ms
45,376 KB
testcase_24 AC 326 ms
42,564 KB
testcase_25 AC 329 ms
43,588 KB
testcase_26 AC 331 ms
45,224 KB
testcase_27 AC 331 ms
45,380 KB
testcase_28 AC 328 ms
44,276 KB
testcase_29 AC 323 ms
42,564 KB
testcase_30 AC 327 ms
43,608 KB
testcase_31 AC 325 ms
44,824 KB
testcase_32 AC 339 ms
45,436 KB
testcase_33 AC 346 ms
45,384 KB
testcase_34 AC 336 ms
42,672 KB
testcase_35 AC 336 ms
44,788 KB
testcase_36 AC 329 ms
42,560 KB
testcase_37 AC 349 ms
55,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/convolution>
#include <iostream>
#include <string>
#include <vector>
using namespace std;
using namespace atcoder;
using ll = long long;

ll conv_ch(char c) {
    ll ret;
    if (c >= 'A' && c <= 'Z') {
        ret = ((ll)(c - 'A') + 1) * 10000 + 1;
    } else {
        ret = ((ll)(c - 'a') + 1) * 10000;
    }
    return ret;
}

int main() {
    ll N, M, K;
    cin >> N >> M >> K;
    string S;
    string T;
    cin >> S;
    cin >> T;
    vector<ll> sq_sum_s(N + 1, 0);
    ll sq_sum_t = 0;
    vector<ll> val_s(N, 0);
    vector<ll> val_t(M, 0);
    for (ll i = 0; i < N; i++) {
        ll val = conv_ch(S[i]);
        sq_sum_s[i + 1] = sq_sum_s[i] + val * val;
        val_s[i] = val;
    }
    for (ll i = 0; i < M; i++) {
        ll val = conv_ch(T[M - 1 - i]);
        sq_sum_t += val * val;
        val_t[i] = val;
    }
    vector<ll> conv_st = convolution_ll(val_s, val_t);
    ll ans = 0;
    for (ll i = M - 1; i <= N - 1; i++) {
        ll diffs =
            (sq_sum_s[i + 1] - sq_sum_s[i + 1 - M]) + sq_sum_t - 2 * conv_st[i];
        if (diffs >= 1 && diffs <= K) {
            ans++;
        }
    }
    cout << ans << endl;
}
0