結果
問題 | No.2378 Cards and Subsequences |
ユーザー | KowerKoint2010 |
提出日時 | 2023-06-30 08:23:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,069 bytes |
コンパイル時間 | 3,007 ms |
コンパイル使用メモリ | 225,624 KB |
実行使用メモリ | 34,816 KB |
最終ジャッジ日時 | 2024-07-21 16:30:05 |
合計ジャッジ時間 | 10,174 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 4 ms
5,376 KB |
testcase_07 | AC | 7 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 53 ms
7,424 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 11 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #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、j-1終わり dp[0][0] = 1; vector<int> last_appeared(m, -1); for(int i = 0; i < n; i++) { for(int j = 0; j <= k; j++) { for(int c : {a[s[i]], b[s[i]]}) { if(j+c <= k) { for(int l = last_appeared[s[i]]+1; l <= i; l++) { dp[j+c][i+1] += dp[j][l]; } } } } last_appeared[s[i]] = i; } ll ans = accumulate(dp[k].begin(), dp[k].end(), 0LL) % MOD; if(ans < 0) ans += MOD; cout << ans << endl; }