結果
問題 | No.2434 RAKUTAN de RAKUTAN |
ユーザー | shobonvip |
提出日時 | 2023-08-12 03:26:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,108 bytes |
コンパイル時間 | 3,389 ms |
コンパイル使用メモリ | 221,728 KB |
実行使用メモリ | 818,176 KB |
最終ジャッジ日時 | 2024-11-20 05:33:52 |
合計ジャッジ時間 | 11,908 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 463 ms
5,248 KB |
testcase_04 | AC | 460 ms
5,248 KB |
testcase_05 | AC | 460 ms
5,248 KB |
testcase_06 | AC | 462 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,120 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
5,120 KB |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include<bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++) #define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--) template <typename T> bool chmin(T &a, const T &b) { if (a <= b) return false; a = b; return true; } template <typename T> bool chmax(T &a, const T &b) { if (a >= b) return false; a = b; return true; } int dp[7][5500]; int main(){ int n, h, x; cin >> n >> h >> x; vector<int> score(n+1); int G; cin >> G; rep(i,0,G){ int g; cin >> g; g--; score[g]++; } int B; cin >> B; rep(i,0,B){ int b; cin >> b; b--; score[b]--; } rep(i,0,x+1) rep(j,0,h+1) dp[i][j] = -1e9; dp[0][0] = 0; int piv = 0; rep(i,1,n+1){ piv++; piv %= x+1; int prev = (piv+x)%(x+1); int xbak = (piv+1)%(x+1); dp[piv][0] = dp[prev][0] + score[i]; rep(j,1,h+1){ dp[piv][j] = max(dp[prev][j], dp[xbak][j-1]) + score[i]; } } int ans = -1e9; rep(i,0,h+1) chmax(ans, dp[piv][i]); cout << ans << endl; }