結果

問題 No.2378 Cards and Subsequences
ユーザー ぷらぷら
提出日時 2023-07-07 21:56:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 1,098 bytes
コンパイル時間 2,483 ms
コンパイル使用メモリ 203,000 KB
実行使用メモリ 51,456 KB
最終ジャッジ日時 2024-07-21 17:50:04
合計ジャッジ時間 11,341 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 7 ms
7,908 KB
testcase_07 AC 9 ms
9,060 KB
testcase_08 AC 8 ms
8,676 KB
testcase_09 AC 16 ms
12,520 KB
testcase_10 AC 44 ms
19,184 KB
testcase_11 AC 45 ms
19,312 KB
testcase_12 AC 46 ms
18,672 KB
testcase_13 AC 23 ms
15,988 KB
testcase_14 AC 304 ms
51,456 KB
testcase_15 AC 293 ms
50,428 KB
testcase_16 AC 237 ms
50,176 KB
testcase_17 AC 237 ms
50,816 KB
testcase_18 AC 236 ms
50,944 KB
testcase_19 AC 256 ms
50,816 KB
testcase_20 AC 303 ms
50,560 KB
testcase_21 AC 289 ms
51,200 KB
testcase_22 AC 302 ms
50,172 KB
testcase_23 AC 304 ms
50,300 KB
testcase_24 AC 144 ms
51,456 KB
testcase_25 AC 138 ms
50,812 KB
testcase_26 AC 142 ms
50,692 KB
testcase_27 AC 151 ms
50,300 KB
testcase_28 AC 138 ms
50,308 KB
testcase_29 AC 293 ms
44,672 KB
testcase_30 AC 330 ms
43,520 KB
testcase_31 AC 304 ms
43,652 KB
testcase_32 AC 309 ms
44,800 KB
testcase_33 AC 294 ms
44,164 KB
testcase_34 AC 291 ms
43,648 KB
testcase_35 AC 289 ms
50,688 KB
testcase_36 AC 288 ms
48,892 KB
testcase_37 AC 288 ms
49,152 KB
testcase_38 AC 300 ms
49,920 KB
testcase_39 AC 298 ms
50,180 KB
testcase_40 AC 17 ms
14,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

constexpr int mod = 998244353;

void mpl(int &x,int y) {
    x += y;
    if(x >= mod) x -= mod;
}

int dp[2020][4020],dp2[4020][2020],nxt[4020][2020];

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N,M,K;
    cin >> N >> M >> K;
    vector<int>S(N);
    for(int i = 0; i < N; i++) {
        cin >> S[i];
        S[i]--;
    }
    vector<int>A(M),B(M);
    for(int i = 0; i < M; i++) {
        cin >> A[i];
    }
    for(int i = 0; i < M; i++) {
        cin >> B[i];
    }
    vector<int>f(M+1);
    int ans = 0;
    for(int i = 0; i < N; i++) {
        if(!f[S[i]]) {
            dp[i][0] = 1;
            f[S[i]] = 1;
        }
        for(int j = K; j >= 0; j--) {
            if(j) mpl(dp[i+1][j],dp[i][j]);
            int now = (dp[i][j]+mod-dp2[j][S[i]])%mod;
            if(j) mpl(dp2[j][S[i]],now);
            mpl(dp[i+1][j+A[S[i]]],now);
            mpl(dp[i+1][j+B[S[i]]],now);
            if(j+A[S[i]] == K) mpl(ans,now);
            if(j+B[S[i]] == K) mpl(ans,now);
        }
    }
    cout << ans << "\n";
}
0