結果

問題 No.2833 Count Taiko Results
ユーザー 👑 potato167potato167
提出日時 2024-08-03 00:14:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 1,671 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 210,792 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-08-03 00:14:34
合計ジャッジ時間 7,958 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 131 ms
6,940 KB
testcase_35 AC 89 ms
6,940 KB
testcase_36 AC 113 ms
7,252 KB
testcase_37 AC 150 ms
7,296 KB
testcase_38 AC 81 ms
6,944 KB
testcase_39 AC 124 ms
7,808 KB
testcase_40 AC 128 ms
7,040 KB
testcase_41 AC 140 ms
7,168 KB
testcase_42 AC 166 ms
6,944 KB
testcase_43 AC 138 ms
6,940 KB
testcase_44 AC 153 ms
7,868 KB
testcase_45 AC 122 ms
6,944 KB
testcase_46 AC 91 ms
6,940 KB
testcase_47 AC 118 ms
6,940 KB
testcase_48 AC 82 ms
6,944 KB
testcase_49 AC 156 ms
8,036 KB
testcase_50 AC 155 ms
6,944 KB
testcase_51 AC 154 ms
7,808 KB
testcase_52 AC 154 ms
8,704 KB
testcase_53 AC 157 ms
7,168 KB
testcase_54 AC 2 ms
6,940 KB
testcase_55 AC 156 ms
9,472 KB
testcase_56 AC 152 ms
9,600 KB
testcase_57 AC 154 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 1 "era.cpp"
#include <bits/stdc++.h>
#include <atcoder/modint>
#line 4 "/Users/Shared/po167_library/ds/Swag.hpp"

namespace po167{
template<class T, T (*op)(T, T), T (*e)()>
struct SWAG
{
    std::vector<std::pair<T, T>> A, B;
    SWAG(int n = -1){
        if (n > 0) A.reserve(n + 1), B.reserve(n + 1);
        A.push_back({e(), e()});
        B.push_back({e(), e()});
    }
    void push(T v){
        B.push_back({v, op(B.back().second, v)});
    }
    void pop(){
        if ((int)A.size() == 1){
            while ((int)B.size() != 1){
                A.push_back({B.back().first, op(B.back().first, A.back().second)});
                B.pop_back();
            }
        }
        assert((int)A.size() != 1);
        A.pop_back();
    }
    T calc(){
        return op(A.back().second, B.back().second);
    }
};
}
#line 4 "era.cpp"
using mint = atcoder::modint998244353;
using namespace std;

mint op(mint a, mint b){
    return a * b;
}
mint e(){
    return 1;
}

int main(){
    int N, K;
    cin >> N >> K;
    vector<int> A(N), B(N);
    for (auto &a : A) cin >> a;
    for (auto &b : B) cin >> b;
    auto f = [&](int k) -> mint {
        po167::SWAG<mint, op, e> S(k + 1);
        std::vector<mint> dp0(N + 1), dp1(N + 1);
        dp1[0] = 1;
        for (int i = 0; i <= N; i++){
            if (k <= i){
                dp0[i] -= dp1[i - k] * S.calc();
                S.pop();
            }
            if (i == N) break;
            S.push(A[i]);
            dp0[i + 1] += (dp0[i] + dp1[i]) * A[i];
            dp1[i + 1] += (dp0[i] + dp1[i]) * B[i];
        }
        return dp0[N] + dp1[N];
    };
    cout << (f(K + 1) - f(K)).val() << "\n";
}

0