結果

問題 No.2172 SEARCH in the Text Editor
ユーザー 👑 NachiaNachia
提出日時 2022-12-18 20:23:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 2,952 bytes
コンパイル時間 1,030 ms
コンパイル使用メモリ 85,836 KB
実行使用メモリ 22,856 KB
最終ジャッジ日時 2024-04-29 05:16:47
合計ジャッジ時間 5,136 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 118 ms
22,728 KB
testcase_04 AC 110 ms
22,856 KB
testcase_05 AC 107 ms
22,728 KB
testcase_06 AC 16 ms
7,040 KB
testcase_07 AC 12 ms
5,888 KB
testcase_08 AC 13 ms
6,272 KB
testcase_09 AC 20 ms
8,320 KB
testcase_10 AC 20 ms
8,064 KB
testcase_11 AC 12 ms
6,400 KB
testcase_12 AC 18 ms
7,296 KB
testcase_13 AC 21 ms
8,320 KB
testcase_14 AC 24 ms
9,356 KB
testcase_15 AC 14 ms
6,656 KB
testcase_16 AC 19 ms
7,680 KB
testcase_17 AC 17 ms
7,168 KB
testcase_18 AC 23 ms
9,216 KB
testcase_19 AC 22 ms
8,704 KB
testcase_20 AC 14 ms
6,528 KB
testcase_21 AC 20 ms
9,600 KB
testcase_22 AC 36 ms
10,496 KB
testcase_23 AC 39 ms
10,472 KB
testcase_24 AC 40 ms
10,496 KB
testcase_25 AC 39 ms
10,496 KB
testcase_26 AC 111 ms
22,740 KB
testcase_27 AC 114 ms
22,784 KB
testcase_28 AC 29 ms
10,240 KB
testcase_29 AC 28 ms
10,240 KB
testcase_30 AC 27 ms
10,240 KB
testcase_31 AC 26 ms
10,276 KB
testcase_32 AC 20 ms
10,112 KB
testcase_33 AC 20 ms
10,252 KB
testcase_34 AC 35 ms
10,440 KB
testcase_35 AC 38 ms
10,404 KB
testcase_36 AC 39 ms
10,400 KB
testcase_37 AC 41 ms
10,448 KB
testcase_38 AC 112 ms
22,608 KB
testcase_39 AC 113 ms
22,784 KB
testcase_40 AC 29 ms
10,192 KB
testcase_41 AC 27 ms
10,136 KB
testcase_42 AC 28 ms
10,348 KB
testcase_43 AC 27 ms
10,336 KB
testcase_44 AC 23 ms
10,248 KB
testcase_45 AC 22 ms
10,240 KB
testcase_46 AC 17 ms
7,680 KB
testcase_47 AC 13 ms
6,400 KB
testcase_48 AC 13 ms
6,656 KB
testcase_49 AC 20 ms
9,088 KB
testcase_50 AC 19 ms
8,576 KB
testcase_51 AC 11 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <utility>
using namespace std;


vector<int> ZAlgorithm(const string& S) {
    int n = S.size();
    vector<int> res(n, 0);
    res[0] = n;
    int pbegin = 1, pend = 1;
    for (int i = 1; i < n; i++) {
        if (i < pend) {
            res[i] = res[i - pbegin];
            if (pend > i + res[i]) continue;
            res[i] = pend - i;
            pbegin = i;
        }
        else {
            pbegin = pend = i;
        }
        while (true) {
            if (pend == n) break;
            if (S[pend] != S[res[i]]) break;
            res[i]++;
            pend++;
        }
    }
    return res;
}


int countT(const string& s, const string& t){
    auto z = ZAlgorithm(t + s);
    int ans = 0;
    for(size_t i=t.size(); i<z.size(); i++) if(z[i] >= (int)t.size()) ans++;
    return ans;
}

const int MOD = 998244353;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N; cin >> N;
    string T; cin >> T;
    
    vector<long long> dp(N);
    vector<string> pre(N);
    vector<string> suf(N);
    vector<bool> tooshort(N, false);

    for(int i=0; i<N; i++){
        string key; cin >> key;
        if(key == "~"){
            int j, k; cin >> j >> k; j--; k--;
            if(tooshort[j]){
                if(tooshort[k]){
                    string q = pre[j] + pre[k];
                    if(q.size() < T.size()){
                        pre[i] = q;
                        tooshort[i] = true;
                    }
                    else{
                        pre[i] = q.substr(0, T.size()-1);
                        suf[i] = q.substr(q.size() - T.size() + 1);
                        dp[i] = countT(q, T);
                    }
                }
                else{
                    string q = pre[j] + pre[k];
                    pre[i] = q.substr(0, T.size()-1);
                    suf[i] = suf[k];
                    dp[i] = (countT(q, T) + dp[k]) % MOD;
                }
            }
            else{
                if(tooshort[k]){
                    string q = suf[j] + pre[k];
                    pre[i] = pre[j];
                    suf[i] = q.substr(q.size() - T.size() + 1);
                    dp[i] = (countT(q, T) + dp[j]) % MOD;
                }
                else{
                    pre[i] = pre[j];
                    suf[i] = suf[k];
                    dp[i] = (dp[j] + dp[k] + countT(suf[j] + pre[k], T)) % MOD;
                }
            }
        }
        else{
            if(key.size() < T.size()){
                pre[i] = key;
                tooshort[i] = true;
            }
            else{
                pre[i] = key.substr(0, T.size() - 1);
                suf[i] = key.substr(key.size() - T.size() + 1);
                dp[i] = countT(key, T);
                tooshort[i] = false;
            }
        }
    }
    
    cout << dp[N-1] << '\n';
    return 0;
}
0