結果

問題 No.2215 Slide Subset Sum
ユーザー milanis48663220milanis48663220
提出日時 2023-02-12 12:29:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 669 ms / 3,000 ms
コード長 3,058 bytes
コンパイル時間 1,518 ms
コンパイル使用メモリ 131,996 KB
実行使用メモリ 90,692 KB
最終ジャッジ日時 2024-07-16 04:44:31
合計ジャッジ時間 17,803 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 299 ms
18,100 KB
testcase_01 AC 661 ms
89,968 KB
testcase_02 AC 657 ms
89,952 KB
testcase_03 AC 662 ms
89,940 KB
testcase_04 AC 654 ms
89,964 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 504 ms
90,388 KB
testcase_18 AC 504 ms
90,312 KB
testcase_19 AC 669 ms
89,992 KB
testcase_20 AC 455 ms
90,344 KB
testcase_21 AC 600 ms
90,164 KB
testcase_22 AC 426 ms
90,400 KB
testcase_23 AC 343 ms
90,556 KB
testcase_24 AC 343 ms
90,688 KB
testcase_25 AC 364 ms
90,692 KB
testcase_26 AC 427 ms
90,376 KB
testcase_27 AC 32 ms
6,944 KB
testcase_28 AC 19 ms
6,940 KB
testcase_29 AC 38 ms
8,960 KB
testcase_30 AC 318 ms
40,320 KB
testcase_31 AC 105 ms
32,896 KB
testcase_32 AC 53 ms
10,496 KB
testcase_33 AC 399 ms
54,776 KB
testcase_34 AC 271 ms
44,712 KB
testcase_35 AC 92 ms
9,344 KB
testcase_36 AC 73 ms
19,968 KB
testcase_37 AC 202 ms
90,664 KB
testcase_38 AC 31 ms
15,800 KB
testcase_39 AC 663 ms
89,964 KB
testcase_40 AC 273 ms
14,956 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 444 ms
90,372 KB
testcase_43 AC 629 ms
90,008 KB
testcase_44 AC 637 ms
90,004 KB
testcase_45 AC 373 ms
90,536 KB
testcase_46 AC 376 ms
90,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>
#include <stack>
#include <atcoder/modint>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

template<typename T>
vector<vector<T>> vec2d(int n, int m, T v){
    return vector<vector<T>>(n, vector<T>(m, v));
}

template<typename T>
vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){
    return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v)));
}

template<typename T>
void print_vector(vector<T> v, char delimiter=' '){
    if(v.empty()) {
        cout << endl;
        return;
    }
    for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter;
    cout << v.back() << endl;
}

using mint = atcoder::modint998244353;

ostream& operator<<(ostream& os, const mint& m){
    os << m.val();
    return os;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n, m, k; cin >> n >> m >> k;
    vector<int> a(n);
    for(int i = 0; i < n; i++) cin >> a[i];
    stack<int> stack_left, stack_right;
    auto dp = vec2d(n, k, mint(0));
    vector<mint> e(k); e[0] = 1;
    auto right_top = [&](){
        if(stack_right.empty()) return &e;
        return &dp[stack_right.top()];
    };
    auto push_left = [&](int i){
        dp[i].assign(k, mint(0));
        auto &v = stack_left.empty() ? e : dp[stack_left.top()];
        for(int j = 0; j < k; j++){
            dp[i][j] += v[j];
            dp[i][(j+a[i])%k] += v[j];
        }
        stack_left.push(i);
    };
    auto push_right = [&](int i){
        dp[i].assign(k, mint(0));
        auto &v = stack_right.empty() ? e : dp[stack_right.top()];
        for(int j = 0; j < k; j++){
            dp[i][j] += v[j];
            dp[i][(j+a[i])%k] += v[j];
        }
        stack_right.push(i);
    };
    auto pop = [&](){
        if(stack_left.empty()){
            while(!stack_right.empty()){
                int i = stack_right.top(); stack_right.pop();
                push_left(i);
            }
        }
        stack_left.pop();
    };
    auto ans = [&](){
        auto &v = stack_left.empty() ? e : dp[stack_left.top()];
        auto &u = stack_right.empty() ? e : dp[stack_right.top()];
        mint ret = 0;
        for(int i = 0; i < k; i++){
            ret += v[i]*u[(k-i)%k];
        }
        return ret;
    };
    for(int i = 0; i < m; i++) push_right(i);
    for(int i = m; i < n; i++){
        cout << ans()-1 << endl;
        push_right(i);
        pop();
    }
    cout << ans()-1 << endl;
}
0