結果

問題 No.2215 Slide Subset Sum
ユーザー umimelumimel
提出日時 2023-02-24 15:16:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,069 ms / 3,000 ms
コード長 2,405 bytes
コンパイル時間 1,990 ms
コンパイル使用メモリ 182,264 KB
実行使用メモリ 170,752 KB
最終ジャッジ日時 2024-09-12 22:47:13
合計ジャッジ時間 26,622 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 359 ms
6,816 KB
testcase_01 AC 277 ms
6,940 KB
testcase_02 AC 1,053 ms
6,940 KB
testcase_03 AC 1,039 ms
6,940 KB
testcase_04 AC 1,068 ms
9,600 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 879 ms
80,640 KB
testcase_18 AC 870 ms
70,016 KB
testcase_19 AC 1,068 ms
8,576 KB
testcase_20 AC 753 ms
88,960 KB
testcase_21 AC 1,011 ms
24,832 KB
testcase_22 AC 738 ms
95,360 KB
testcase_23 AC 689 ms
153,728 KB
testcase_24 AC 685 ms
154,496 KB
testcase_25 AC 699 ms
137,728 KB
testcase_26 AC 739 ms
96,000 KB
testcase_27 AC 43 ms
6,940 KB
testcase_28 AC 32 ms
8,832 KB
testcase_29 AC 65 ms
6,940 KB
testcase_30 AC 485 ms
6,940 KB
testcase_31 AC 224 ms
57,984 KB
testcase_32 AC 84 ms
6,940 KB
testcase_33 AC 636 ms
17,152 KB
testcase_34 AC 451 ms
42,368 KB
testcase_35 AC 116 ms
6,944 KB
testcase_36 AC 137 ms
27,520 KB
testcase_37 AC 668 ms
170,752 KB
testcase_38 AC 54 ms
17,792 KB
testcase_39 AC 282 ms
6,944 KB
testcase_40 AC 279 ms
6,940 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 876 ms
88,704 KB
testcase_43 AC 1,069 ms
14,464 KB
testcase_44 AC 1,067 ms
14,464 KB
testcase_45 AC 705 ms
129,920 KB
testcase_46 AC 705 ms
129,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
#define drep(i, cc, n) for (ll i = (cc); i <= (n); ++i)
#define rep(i, n) drep(i, 0, n - 1)
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define fi first
#define se second

const ll MOD = 1000000007;
const ll MOD2 = 998244353;
const ll INF = 1LL << 60;
const ll MAX_N = 2e5;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    ll mod = MOD2;
    ll n, m, k; cin >> n >> m >> k;
    vector<ll> a(n); rep(i, n) cin >> a[i];

    stack<pair<ll, vector<ll>>> f, b;
    //初期化
    for(ll i=0; i<m-1; i++){
        if(i==0){
            vector<ll> dp(k, 0);
            dp[a[i]]=1;
            b.push({i, dp});
        }else{
            vector<ll> dp(k, 0);
            dp[a[i]]=1;
            for(ll j=0; j<k; j++) dp[(a[i]+j)%k]=(dp[(a[i]+j)%k] + b.top().se[(a[i]+j)%k]+b.top().se[j])%mod;
            b.push({i, dp});
        }
    }

    vector<ll> ans(n-m+1);
    for(ll i=0; i<n-m+1; i++){
        //a[i+m-1]を追加
        if((ll)b.size()==0){
            vector<ll> dp(k, 0);
            dp[a[i+m-1]]=1;
            b.push({i+m-1, dp});
        }else{
            vector<ll> dp(k, 0);
            dp[a[i+m-1]]=1;
            for(ll j=0; j<k; j++) dp[(a[i+m-1]+j)%k]=(dp[(a[i+m-1]+j)%k]+b.top().se[(a[i+m-1]+j)%k]+b.top().se[j])%mod;
            b.push({i+m-1, dp});
        }

        //求解
        if((ll)f.size()==0){
            ans[i] = b.top().se[0];
        }else{
            ans[i] = (f.top().se[0]+b.top().se[0])%mod;
            for(ll j=0; j<k; j++) ans[i] = (ans[i] + (f.top().se[j] * b.top().se[(k-j)%k])%mod)%mod;
        }

        //a[i]を削除
        if((ll)f.size()==0){
            while(b.top().fi!=i){
                if((ll)f.size()==0){
                    vector<ll> dp(k, 0);
                    dp[a[b.top().fi]]=1;
                    f.push({b.top().fi, dp});
                }else{
                    vector<ll> dp(k, 0);
                    dp[a[b.top().fi]]=1;
                    for(ll j=0; j<k; j++) dp[(a[b.top().fi]+j)%k]=(dp[(a[b.top().fi]+j)%k]+f.top().se[(a[b.top().fi]+j)%k]+f.top().se[j])%mod;
                    f.push({b.top().fi, dp});
                }
                b.pop();
            }
            b.pop();
        }else{
            f.pop();
        }
    }

    rep(i, n-m+1) cout << ans[i] << endl;
}
0