結果

問題 No.1947 質より種類数
ユーザー cho435cho435
提出日時 2022-05-25 10:14:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 796 bytes
コンパイル時間 1,777 ms
コンパイル使用メモリ 174,416 KB
実行使用メモリ 399,872 KB
最終ジャッジ日時 2024-09-20 14:42:46
合計ジャッジ時間 10,084 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,752 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 31 ms
5,376 KB
testcase_05 AC 26 ms
5,376 KB
testcase_06 AC 23 ms
5,376 KB
testcase_07 AC 29 ms
5,376 KB
testcase_08 AC 36 ms
5,376 KB
testcase_09 AC 39 ms
11,904 KB
testcase_10 AC 27 ms
9,216 KB
testcase_11 AC 84 ms
23,040 KB
testcase_12 AC 55 ms
16,768 KB
testcase_13 AC 22 ms
8,192 KB
testcase_14 AC 212 ms
112,384 KB
testcase_15 AC 111 ms
58,624 KB
testcase_16 AC 318 ms
162,688 KB
testcase_17 AC 424 ms
210,176 KB
testcase_18 AC 748 ms
373,504 KB
testcase_19 AC 678 ms
326,400 KB
testcase_20 AC 481 ms
245,504 KB
testcase_21 AC 564 ms
289,536 KB
testcase_22 AC 34 ms
19,072 KB
testcase_23 AC 273 ms
130,944 KB
testcase_24 AC 94 ms
6,144 KB
testcase_25 AC 72 ms
5,376 KB
testcase_26 AC 38 ms
5,376 KB
testcase_27 AC 53 ms
5,376 KB
testcase_28 AC 80 ms
5,376 KB
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for (int i=0;i<(int)(n);i++)

int main(){
  int n,p,c;
  cin>>n>>p>>c;
  vector<int> v(n);
  vector<int> w(n);
  rep(i,n) cin>>v.at(i)>>w.at(i);
  vector<vector<ll>> dp(2*n+1,vector<ll>(p+1,0));
  rep(i,n){
    rep(j,p){
      for(ll l=1;j+l*v.at(i)<=p;l++) dp[i+1][j+l*v.at(i)]=max(dp[i+1][j+l*v.at(i)],dp[i][j]+l*w.at(i));
      dp[i+1][j+1]=max(dp[i+1][j+1],max(dp[i][j+1],dp[i+1][j]));
    }
  }
  rep(i,n){
    rep(j,p){
      if(j+v.at(i)<=p) dp[n+i+1][j+v.at(i)]=max(dp[n+i+1][j+v.at(i)],dp[n+i][j]+w.at(i)+c);
      dp[n+i+1][j+1]=max(dp[n+i+1][j+1],max(dp[n+i][j+1],dp[n+i+1][j]));
    }
  }
  /*
  for(auto dd:dp){
    for(auto d:dd) cout<<d<<" ";
    cout<<endl;
  }
  */
  cout<<dp[2*n][p]<<endl;
}
0