結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
199,412 KB
testcase_01 AC 109 ms
199,424 KB
testcase_02 AC 110 ms
199,416 KB
testcase_03 AC 109 ms
199,592 KB
testcase_04 AC 111 ms
199,420 KB
testcase_05 AC 109 ms
199,544 KB
testcase_06 AC 110 ms
199,392 KB
testcase_07 AC 108 ms
199,436 KB
testcase_08 AC 108 ms
199,392 KB
testcase_09 AC 110 ms
199,588 KB
testcase_10 AC 110 ms
199,548 KB
testcase_11 AC 109 ms
199,404 KB
testcase_12 AC 132 ms
199,572 KB
testcase_13 AC 188 ms
199,552 KB
testcase_14 AC 121 ms
199,472 KB
testcase_15 AC 119 ms
199,456 KB
testcase_16 AC 128 ms
199,468 KB
testcase_17 AC 135 ms
199,520 KB
testcase_18 AC 108 ms
199,424 KB
testcase_19 AC 108 ms
199,404 KB
testcase_20 AC 108 ms
199,596 KB
testcase_21 AC 110 ms
199,488 KB
testcase_22 AC 109 ms
199,436 KB
testcase_23 AC 111 ms
199,584 KB
testcase_24 AC 224 ms
199,508 KB
testcase_25 AC 222 ms
199,520 KB
testcase_26 AC 220 ms
199,652 KB
testcase_27 AC 220 ms
199,572 KB
testcase_28 AC 211 ms
199,480 KB
testcase_29 AC 212 ms
199,568 KB
testcase_30 AC 108 ms
199,536 KB
testcase_31 AC 109 ms
199,604 KB
testcase_32 AC 111 ms
199,400 KB
testcase_33 AC 110 ms
199,432 KB
testcase_34 AC 112 ms
199,580 KB
testcase_35 AC 225 ms
199,524 KB
testcase_36 AC 221 ms
199,520 KB
testcase_37 AC 223 ms
199,632 KB
testcase_38 AC 217 ms
199,528 KB
testcase_39 AC 218 ms
199,656 KB
testcase_40 AC 223 ms
199,616 KB
testcase_41 AC 221 ms
199,584 KB
testcase_42 AC 217 ms
199,664 KB
testcase_43 AC 220 ms
199,476 KB
testcase_44 AC 219 ms
199,572 KB
testcase_45 AC 219 ms
199,612 KB
testcase_46 AC 216 ms
199,520 KB
testcase_47 AC 217 ms
199,484 KB
testcase_48 AC 214 ms
199,560 KB
testcase_49 AC 214 ms
199,564 KB
testcase_50 AC 213 ms
199,668 KB
testcase_51 AC 214 ms
199,540 KB
testcase_52 AC 204 ms
199,560 KB
testcase_53 AC 224 ms
199,600 KB
testcase_54 AC 206 ms
199,476 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 = -INF;
  rep(j, 5010) rep(k, 2) chmax(ans, dp[N][j][k]);
  cout << ans << '\n';
  return 0;
}
0