結果
問題 | No.2434 RAKUTAN de RAKUTAN |
ユーザー | Astral__ |
提出日時 | 2023-08-12 14:53:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,692 bytes |
コンパイル時間 | 4,681 ms |
コンパイル使用メモリ | 263,136 KB |
実行使用メモリ | 814,816 KB |
最終ジャッジ日時 | 2024-11-20 05:36:50 |
合計ジャッジ時間 | 17,650 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
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 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; //* ATCODER #include<atcoder/all> using namespace atcoder; typedef modint998244353 mint; //*/ /* BOOST MULTIPRECISION #include<boost/multiprecision/cpp_int.hpp> using namespace boost::multiprecision; //*/ 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; } template <typename T> T max(vector<T> &a){ assert(!a.empty()); T ret = a[0]; for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]); return ret; } template <typename T> T min(vector<T> &a){ assert(!a.empty()); T ret = a[0]; for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]); return ret; } template <typename T> T sum(vector<T> &a){ T ret = 0; for (int i=0; i<(int)a.size(); i++) ret += a[i]; return ret; } int main(){ int n, h, x; cin >> n >> h >> x; int G; cin >> G; vector<int> g(G); rep(i,0,G) cin >> g[i]; int B; cin >> B; vector<int> b(B); rep(i,0,B) cin >> b[i]; vector<int> score(n); rep(i,0,G) score[g[i]-1] = 1; rep(i,0,B) score[b[i]-1] = - 1; vector<vector<int>> dp(n+1, vector<int>(2001, 1e9)); dp[0][100] = 0; rep(i,0,n){ rep(j,0,2001){ if (0 <= j+score[i] && j+score[i] <= 2000){ if (i+1-x >= 0){ chmin(dp[i+1][j+score[i]], dp[i+1-x][j] + 1); } chmin(dp[i+1][j+score[i]], dp[i][j]); } } } int ans = -2000; rep(i,0,2001){ if (dp[n][i] <= h){ chmax(ans, i - 1000); } } cout << ans << '\n'; }