結果

問題 No.1947 質より種類数
ユーザー ronnyaronnya
提出日時 2022-05-21 13:02:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 434 ms / 2,000 ms
コード長 1,248 bytes
コンパイル時間 2,286 ms
コンパイル使用メモリ 207,312 KB
実行使用メモリ 394,624 KB
最終ジャッジ日時 2024-09-20 11:35:43
合計ジャッジ時間 7,884 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 4 ms
5,504 KB
testcase_09 AC 10 ms
11,904 KB
testcase_10 AC 7 ms
9,344 KB
testcase_11 AC 21 ms
23,040 KB
testcase_12 AC 15 ms
16,768 KB
testcase_13 AC 6 ms
8,064 KB
testcase_14 AC 112 ms
112,640 KB
testcase_15 AC 60 ms
58,624 KB
testcase_16 AC 166 ms
162,816 KB
testcase_17 AC 213 ms
210,304 KB
testcase_18 AC 384 ms
373,632 KB
testcase_19 AC 341 ms
326,656 KB
testcase_20 AC 246 ms
245,632 KB
testcase_21 AC 297 ms
289,536 KB
testcase_22 AC 18 ms
19,072 KB
testcase_23 AC 130 ms
130,944 KB
testcase_24 AC 5 ms
6,400 KB
testcase_25 AC 4 ms
5,504 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 434 ms
394,624 KB
testcase_30 AC 426 ms
394,624 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 375 ms
394,496 KB
testcase_35 AC 382 ms
394,496 KB
testcase_36 AC 428 ms
394,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

using ll = long long;
using ld = long double;

#define rep(i, a, b) for(ll i = (ll)a; i < (ll)b; i++)
#define irep(i, v) for(auto i = (v).begin(); i != (v).end(); i++)
#define ALL(v) (v).begin(), (v).end()
#define SZ(v) (ll)(v).size()

const ll INF = 3e18;
const ld EPS = 1e-10;
const ll MOD = 1e9 + 7;
const ld PI = M_PI;

int main(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  srand((unsigned)time(NULL));
  cout << fixed << setprecision(20);

  ll n, vmax, c;
  cin >> n >> vmax >> c;
  vector<ll> v(2 * n), w(2 * n);
  rep(i, 0, n){
    cin >> v[2 * i + 1] >> w[2 * i + 1];
    v[2 * i] = v[2 * i + 1];
    w[2 * i] = w[2 * i + 1] + c;
  }

  vector<vector<ll>> dp(2 * n + 1, vector<ll>(vmax + 1, 0));

  rep(i, 0, 2 * n){
    rep(j, 1, vmax + 1){
      if(i % 2 == 1){
        if(j - v[i] >= 0) dp[i + 1][j] = max({dp[i][j], dp[i + 1][j - v[i]] + w[i], dp[i + 1][j - 1]});
        else dp[i + 1][j] = max(dp[i][j], dp[i + 1][j - 1]);
      }
      else{
        if(j - v[i] >= 0) dp[i + 1][j] = max({dp[i][j], dp[i][j - v[i]] + w[i], dp[i + 1][j - 1]});
        else dp[i + 1][j] = max(dp[i + 1][j], dp[i][j]);
      }
    }
  }

  cout << *max_element(ALL(dp[2 * n])) << endl;

  return 0;
}
0