結果

問題 No.2215 Slide Subset Sum
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-02-11 06:20:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 703 ms / 3,000 ms
コード長 1,423 bytes
コンパイル時間 1,801 ms
コンパイル使用メモリ 180,420 KB
実行使用メモリ 168,704 KB
最終ジャッジ日時 2024-07-07 22:20:32
合計ジャッジ時間 19,007 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 373 ms
6,816 KB
testcase_01 AC 482 ms
6,944 KB
testcase_02 AC 694 ms
6,940 KB
testcase_03 AC 674 ms
6,940 KB
testcase_04 AC 685 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 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,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 555 ms
78,208 KB
testcase_18 AC 564 ms
67,456 KB
testcase_19 AC 685 ms
6,944 KB
testcase_20 AC 491 ms
86,400 KB
testcase_21 AC 683 ms
22,016 KB
testcase_22 AC 492 ms
92,800 KB
testcase_23 AC 427 ms
151,424 KB
testcase_24 AC 431 ms
152,064 KB
testcase_25 AC 455 ms
135,296 KB
testcase_26 AC 488 ms
93,440 KB
testcase_27 AC 35 ms
6,940 KB
testcase_28 AC 28 ms
8,704 KB
testcase_29 AC 43 ms
6,944 KB
testcase_30 AC 343 ms
6,940 KB
testcase_31 AC 138 ms
57,216 KB
testcase_32 AC 56 ms
6,940 KB
testcase_33 AC 448 ms
15,104 KB
testcase_34 AC 322 ms
40,576 KB
testcase_35 AC 113 ms
6,940 KB
testcase_36 AC 90 ms
27,264 KB
testcase_37 AC 417 ms
168,704 KB
testcase_38 AC 86 ms
15,460 KB
testcase_39 AC 494 ms
5,376 KB
testcase_40 AC 346 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 581 ms
86,272 KB
testcase_43 AC 703 ms
11,776 KB
testcase_44 AC 692 ms
11,648 KB
testcase_45 AC 459 ms
127,352 KB
testcase_46 AC 457 ms
127,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using Vl = std::vector<ll> ;
ll const m = 998244353;
std::stack<Vl> st1, st2;
stack<int> stt;
int N, M, K;
void Push(int a, int id = 1) {
    stack<Vl>& S = (id ? st2 : st1);
    Vl A(K, 0);
    if (S.empty()) {
        A[0] = 1;
        A[a] ++;
    } else {
        auto B = S.top();
        for (int i = 0; i < K; i ++) {
            A[i] = B[i] + B[(i + K - a) % K];
            A[i] %= m;
        }
    }
    S.push(A);
    if (id == 1) {
        stt.push(a);
    }
}
void Pop() {
    if (!st1.empty()) {
        st1.pop();
    } else {
        while (!st2.empty()) {
            auto v = st2.top();
            st2.pop();
            auto a = stt.top();
            stt.pop();
            Push(a, 0);
        }
        st1.pop();
    }
}
void CA() {
    Vl A(K, 0), B(K, 0);
    if (st1.empty()) {
        A[0] = 1;
    } else {
        A = st1.top();
    }
    if (st2.empty()) {
        B[0] = 1;
    } else {
        B = st2.top();
    }
    ll ans = m - 1;
    for (int i = 0; i < K; i ++) {
        ans += (A[i] * B[(K - i) % K]) % m;
        ans %= m;
    }
    cout << ans << endl;
}
int main () {
    cin >> N >> M >> K;
    for (int i = 0; i < M - 1; i ++) {
        int a;
        cin >> a;
        Push(a);
    }
    for (int i = M - 1; i < N; i ++) {
        int a;
        cin >> a;
        Push(a);
        CA();
        Pop();
    }
}
0