結果
問題 | No.951 【本日限定】1枚頼むともう1枚無料! |
ユーザー | tonegawa |
提出日時 | 2020-08-11 01:42:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,553 bytes |
コンパイル時間 | 1,665 ms |
コンパイル使用メモリ | 107,392 KB |
実行使用メモリ | 199,552 KB |
最終ジャッジ日時 | 2024-10-09 04:38:20 |
合計ジャッジ時間 | 10,404 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
ソースコード
#include <iostream> #include <string> #include <vector> #include <queue> #include <deque> #include <algorithm> #include <set> #include <map> #include <bitset> #include <cmath> #include <functional> #include <iomanip> #define vll vector<ll> #define vvvl vector<vvl> #define vvl vector<vector<ll>> #define VV(a, b, c, d) vector<vector<d>>(a, vector<d>(b, c)) #define VVV(a, b, c, d) vector<vvl>(a, vvl(b, vll (c, d))); #define re(c, b) for(ll c=0;c<b;c++) #define all(obj) (obj).begin(), (obj).end() typedef int ll; typedef long double ld; using namespace std; int main(int argc, char const *argv[]) { ll n, k;std::cin >> n >> k; vvl d = VV(n, 2, 0, ll); re(i, n) std::cin >> d[i][0] >> d[i][1]; sort(all(d)); reverse(all(d)); ll INF = 100000000; //買う->無料交互になるべき // dp[i][j][k] := i枚見てj円使ってモードk(0/1)の時の価値最大 vvvl dp = VVV(n+1, 2, k+1, -INF); dp[0][0][0] = 0; for(int i=0;i<n;i++){ vll now = d[i]; for(int j=0;j<=k;j++){ //有料モードで購入する if(j+now[0]<=k) dp[i+1][1][j+now[0]] = max(dp[i+1][1][j+now[0]], dp[i][0][j]+now[1]); //有料モードでパス dp[i+1][0][j] = max(dp[i+1][0][j], dp[i][0][j]); //無料モードで購入 dp[i+1][0][j] = max(dp[i+1][0][j], dp[i][1][j]+now[1]); //無料モードでパス dp[i+1][1][j] = max(dp[i+1][1][j], dp[1][i][j]); } } ll ans = -INF; for(int i=0;i<=k;i++){ ans = max({ans, dp[n][0][i], dp[n][1][i]}); } std::cout << ans << '\n'; return 0; }