結果

問題 No.1947 質より種類数
ユーザー umezoumezo
提出日時 2022-05-20 22:48:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 203,636 KB
実行使用メモリ 202,300 KB
最終ジャッジ日時 2024-09-20 09:10:16
合計ジャッジ時間 3,785 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
7,896 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 7 ms
13,628 KB
testcase_12 AC 5 ms
11,228 KB
testcase_13 AC 3 ms
7,824 KB
testcase_14 AC 29 ms
58,576 KB
testcase_15 AC 14 ms
31,792 KB
testcase_16 AC 41 ms
84,604 KB
testcase_17 AC 53 ms
109,208 KB
testcase_18 AC 92 ms
190,932 KB
testcase_19 AC 81 ms
167,996 KB
testcase_20 AC 59 ms
125,692 KB
testcase_21 AC 73 ms
148,964 KB
testcase_22 AC 6 ms
11,440 KB
testcase_23 AC 33 ms
68,932 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 111 ms
200,932 KB
testcase_30 AC 111 ms
202,300 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 65 ms
201,604 KB
testcase_35 AC 64 ms
200,776 KB
testcase_36 AC 112 ms
201,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;

#include <bits/stdc++.h>
using namespace std;

ll dp[5050][5050];

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  ll n,v,c;
  cin>>n>>v>>c;
  vector<ll> V(n+1),W(n+1);
  rep(i,n) cin>>V[i+1]>>W[i+1];
  
  for(int i=1;i<=n;i++){
    for(int j=v;j>=0;j--){
      dp[i][j]=dp[i-1][j];
      if(j+V[i]<=v) dp[i][j]=max(dp[i][j],dp[i-1][j+V[i]]+W[i]+c);
      if(j+V[i]<=v) dp[i][j]=max(dp[i][j],dp[i][j+V[i]]+W[i]);
    }
  }
  ll ans=0;
  for(int j=0;j<=v;j++) ans=max(ans,dp[n][j]);
  cout<<ans<<endl;

  return 0;
}
0