結果
問題 | No.951 【本日限定】1枚頼むともう1枚無料! |
ユーザー | outline |
提出日時 | 2021-01-14 04:35:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,337 bytes |
コンパイル時間 | 2,671 ms |
コンパイル使用メモリ | 143,836 KB |
実行使用メモリ | 199,168 KB |
最終ジャッジ日時 | 2024-11-23 15:14:53 |
合計ジャッジ時間 | 10,012 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 6 ms
6,656 KB |
testcase_11 | AC | 7 ms
7,424 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 29 ms
31,360 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 3 ms
5,248 KB |
testcase_21 | AC | 6 ms
6,272 KB |
testcase_22 | AC | 3 ms
5,248 KB |
testcase_23 | AC | 5 ms
5,248 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 247 ms
199,040 KB |
testcase_29 | AC | 249 ms
199,148 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 6 ms
7,296 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | AC | 250 ms
199,040 KB |
testcase_50 | AC | 247 ms
199,040 KB |
testcase_51 | AC | 249 ms
199,152 KB |
testcase_52 | AC | 211 ms
180,608 KB |
testcase_53 | AC | 243 ms
199,040 KB |
testcase_54 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <array> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <fstream> #include <complex> #include <cstring> #include <unordered_map> #include <unordered_set> using namespace std; using ll = long long; constexpr int INF = 1001001001; constexpr int mod = 1000000007; // constexpr int mod = 998244353; template<class T> inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template<class T> inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } int dp[5005][5005][2], cum_max[5005][2]; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N, K; cin >> N >> K; vector<pair<int, int>> dat; for(int i = 0; i < N; ++i){ int P, D; cin >> P >> D; dat.emplace_back(P, D); } sort(rbegin(dat), rend(dat)); for(int i = 0; i <= N; ++i){ for(int s = 0; s <= K; ++s){ for(int f = 0; f < 2; ++f){ dp[i][s][f] = -INF; } } } for(int s = 0; s <= K; ++s){ for(int f = 0; f < 2; ++f){ cum_max[s][f] = -INF; } } dp[0][0][0] = 0; for(int i = 0; i < N; ++i){ for(int s = 0; s < K; ++s){ for(int f = 0; f < 2; ++f){ chmax(cum_max[s][f], dp[i][s][f]); if(s) chmax(cum_max[s][f], cum_max[s - 1][f]); } } auto [P, D] = dat[i]; for(int s = 0; s <= K; ++s){ chmax(dp[i + 1][s][0], dp[i][s][0]); chmax(dp[i + 1][s][1], dp[i][s][1]); chmax(dp[i + 1][s][0], cum_max[s][1] + D); if(s + P <= K){ chmax(dp[i + 1][s + P][1], max(cum_max[s][0], cum_max[s][1]) + D); } } } int ans = -INF; for(int s = 0; s <= K; ++s){ for(int f = 0; f < 2; ++f){ chmax(ans, dp[N][s][f]); } } cout << ans << endl; return 0; }