結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー imoni_kawaiiimoni_kawaii
提出日時 2020-06-13 12:08:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 1,297 bytes
コンパイル時間 2,520 ms
コンパイル使用メモリ 207,240 KB
実行使用メモリ 199,680 KB
最終ジャッジ日時 2024-06-25 00:14:25
合計ジャッジ時間 14,365 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
199,552 KB
testcase_01 AC 126 ms
199,424 KB
testcase_02 AC 129 ms
199,552 KB
testcase_03 AC 125 ms
199,424 KB
testcase_04 AC 128 ms
199,424 KB
testcase_05 AC 149 ms
199,424 KB
testcase_06 AC 127 ms
199,424 KB
testcase_07 AC 128 ms
199,424 KB
testcase_08 AC 131 ms
199,552 KB
testcase_09 AC 131 ms
199,552 KB
testcase_10 AC 130 ms
199,424 KB
testcase_11 AC 130 ms
199,424 KB
testcase_12 AC 157 ms
199,424 KB
testcase_13 AC 228 ms
199,552 KB
testcase_14 AC 142 ms
199,424 KB
testcase_15 AC 146 ms
199,424 KB
testcase_16 AC 153 ms
199,552 KB
testcase_17 AC 159 ms
199,424 KB
testcase_18 AC 128 ms
199,424 KB
testcase_19 AC 129 ms
199,424 KB
testcase_20 AC 129 ms
199,424 KB
testcase_21 AC 130 ms
199,424 KB
testcase_22 AC 129 ms
199,552 KB
testcase_23 AC 131 ms
199,424 KB
testcase_24 AC 265 ms
199,552 KB
testcase_25 AC 265 ms
199,552 KB
testcase_26 AC 264 ms
199,552 KB
testcase_27 AC 263 ms
199,552 KB
testcase_28 AC 255 ms
199,680 KB
testcase_29 AC 253 ms
199,492 KB
testcase_30 AC 128 ms
199,424 KB
testcase_31 AC 129 ms
199,424 KB
testcase_32 AC 130 ms
199,424 KB
testcase_33 AC 129 ms
199,424 KB
testcase_34 AC 131 ms
199,424 KB
testcase_35 AC 270 ms
199,680 KB
testcase_36 AC 265 ms
199,552 KB
testcase_37 AC 267 ms
199,492 KB
testcase_38 AC 264 ms
199,552 KB
testcase_39 AC 265 ms
199,552 KB
testcase_40 AC 268 ms
199,552 KB
testcase_41 AC 262 ms
199,552 KB
testcase_42 AC 262 ms
199,624 KB
testcase_43 AC 266 ms
199,552 KB
testcase_44 AC 264 ms
199,552 KB
testcase_45 AC 261 ms
199,552 KB
testcase_46 AC 258 ms
199,680 KB
testcase_47 AC 260 ms
199,552 KB
testcase_48 AC 256 ms
199,552 KB
testcase_49 AC 256 ms
199,680 KB
testcase_50 AC 256 ms
199,552 KB
testcase_51 AC 249 ms
199,680 KB
testcase_52 AC 242 ms
199,552 KB
testcase_53 AC 268 ms
199,552 KB
testcase_54 AC 244 ms
199,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#ifdef _DEBUG
#include "debug.hpp"
#else
#define debug(...)
#endif
#define REP(i, m, n) for(int i = (int)(m); i < (int)(n); ++i)
#define rep(i, n) REP(i, 0, n)
using namespace std;
using ll = long long; using ld = long double; using pll = pair<ll, ll>;
const int INF = 1<<30; const ll LINF = 1LL<<60; const ld PI = 3.1415926535897932;
template<class T, class U> inline bool chmax(T &a, const U &b) { if(a < b) { a = b; return true; } return false; }
template<class T, class U> inline bool chmin(T &a, const U &b) { if(a > b) { a = b; return true; } return false; }

int dp[5010][5010][2];

signed main() {
  cin.tie(0); ios::sync_with_stdio(false);
  int N, K;
  cin >> N >> K;
  vector<pll> p(N);
  rep(i, N) cin >> p[i].first >> p[i].second;
  sort(p.begin(), p.end(), greater<pll>());
  rep(i, 5010) rep(j, 5010) rep(k, 2) dp[i][j][k] = -INF;
  rep(j, 5010) dp[0][j][0] = 0;
  rep(i, N) rep(j, K+1) {
    rep(k, 2) {
      if(dp[i][j][k] == -INF) continue;
      chmax(dp[i+1][j][k], dp[i][j][k]);
    }
    if(dp[i][j][0] != -INF && j+p[i].first <= K) chmax(dp[i+1][j+p[i].first][1], dp[i][j][0]+p[i].second);
    if(dp[i][j][0] != -INF) chmax(dp[i+1][j][0], dp[i][j][1]+p[i].second);
  }
  int ans = max(dp[N][K][1], dp[N][K][0]);
  cout << ans << '\n';
  return 0;
}
0