結果

問題 No.2378 Cards and Subsequences
ユーザー KowerKoint2010KowerKoint2010
提出日時 2023-06-30 08:09:31
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 1,083 bytes
コンパイル時間 2,126 ms
コンパイル使用メモリ 208,108 KB
実行使用メモリ 34,816 KB
最終ジャッジ日時 2024-07-21 16:28:07
合計ジャッジ時間 7,529 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 6
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    constexpr ll MOD = 998244353;
    int n, m, k; cin >> n >> m >> k;
    vector<int> s(n), a(m), b(m);
    for(int i = 0; i < n; i++) {
        cin >> s[i];
        s[i]--;
    }
    for(int i = 0; i < m; i++) cin >> a[i];
    for(int i = 0; i < m; i++) cin >> b[i];
    vector<vector<ll>> dp(k+1, vector<ll>(n+1)); // 総和がi、[0, j)を使う
    dp[0][0] = 1;
    vector<int> last_appeared(m, -1);
    for(int i = 0; i < n; i++) {
        for(int j = 0; j <= k; j++) dp[j][i+1] = dp[j][i];
        for(int j = 0; j <= k; j++) {
            for(int c : {a[s[i]], b[s[i]]}) {
                if(j+c <= k) {
                    dp[j+c][i+1] += dp[j][i];
                    if(last_appeared[s[i]] != -1) {
                        dp[j+c][i+1] -= dp[j][last_appeared[s[i]]];
                    }
                    dp[j+c][i+1] %= MOD;
                }
            }
        }
        last_appeared[s[i]] = i;
    }
    ll ans = dp[k][n];
    if(ans < 0) ans += MOD;
    cout << ans << endl;
}
0