結果

問題 No.2626 Similar But Different Name
ユーザー Kaushal_26Kaushal_26
提出日時 2024-02-09 23:31:17
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,869 bytes
コンパイル時間 2,752 ms
コンパイル使用メモリ 250,828 KB
実行使用メモリ 36,564 KB
最終ジャッジ日時 2024-09-28 16:35:48
合計ジャッジ時間 4,320 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 WA -
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 25 ms
36,564 KB
testcase_19 WA -
testcase_20 AC 15 ms
19,780 KB
testcase_21 AC 14 ms
19,800 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 24 ms
36,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef Kaushal_26
        #include <debug.h>
#else
        #include <bits/stdc++.h>

        using namespace std;

        #define clog                    if (0) cerr
        #define lvl(...)                42
        #define dbg(...)                42
#endif

#define int                             long long

#define overload5(a, b, c, d, e, ...)   e
#define FORS(i, a, b, c)                for(int i = (a); i < (int)(b); i += c)
#define FOR1(i, a, b)                   for(int i = (a); i < (int)(b); ++i)
#define F0R(i, a)                       for(int i = (0); i < (int)(a); ++i)
#define ROFS(i, a, b, c)                for(int i = (b) - 1; i >= (int)(a); i -= c)
#define ROF1(i, a, b)                   for(int i = (b) - 1; i >= (int)(a); --i)
#define R0F(i, a)                       for(int i = (a) - 1; i >= (int)(0); --i)
#define FOR(...)                        overload5(__VA_ARGS__, FORS, FOR1, F0R)(__VA_ARGS__)
#define ROF(...)                        overload5(__VA_ARGS__, ROFS, ROF1, R0F)(__VA_ARGS__)
#define REP(i, x)			for(auto &i : x)

template <class T> auto V(const T& value, int size) {
        return vector<T>(size, value);
}

template <class T, class... D> auto V(const T& value, int size, D... w) {
        auto W = V(value, w...);
        return vector<decltype(W)>(size, W);
}

template <class T> bool ckmin(T &a, const T b) {
        return b < a ? a = b, 1 : 0;
}

template<class T> bool ckmax(T &a, const T b) {
        return b > a ? a = b, 1 : 0;
}

bool ok(char a, char b) {
        if(a >= 'A' && a <= 'Z') a = a - 'A' + 'a';
        if(b >= 'A' && b <= 'Z') b = b - 'A' + 'a';
        return a == b;
}

int N, M , K;
auto prefix_function(string s) {
    int n = (int)s.length();
    vector<int> pi(n);
    vector<int> ip(n);
    for (int i = 1; i < n; i++) {
        if(i > M) ip[i] = ip[i - 1];

        int j = pi[i-1];
        while (j > 0 && !ok(s[i], s[j]))
            j = pi[j-1];
        dbg(i, j, s[i], s[j]);
        if(i > M && s[i] != s[j])
                ip[i]++;
        if (ok(s[i], s[j]))
            j++;
        pi[i] = j;
    }
    return make_pair(pi, ip);
}

void solve() {
        cin >> N >> M >> K;

        string a, b; cin >> a >> b;

        auto [p, q] = prefix_function(b + "#" + a);     

        dbg(p, q);
        int ret = 0;
        FOR(i, M + 1, p.size()) {
                if(p[i] >= M && q[i] - q[i - M] <= K && q[i] - q[i - M] != 0) {
                        ret++;
                        dbg(i - M - 1);
                }
        }

        cout << ret << "\n";
} 

signed main() {
        cin.tie(0)->sync_with_stdio(0);

        #ifdef Kaushal_26
                for(int TestCase = 1; ; TestCase++) {
                        clog << endl; dbg(TestCase);
                        solve();
                }
        #else
                solve();
        #endif
        return 0;
}

// 1.77245
0