結果

問題 No.1947 質より種類数
ユーザー Nzt3Nzt3
提出日時 2022-05-21 14:26:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 1,672 ms
コンパイル使用メモリ 173,964 KB
実行使用メモリ 199,036 KB
最終ジャッジ日時 2023-10-20 16:13:59
合計ジャッジ時間 5,509 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,368 KB
testcase_01 AC 2 ms
4,368 KB
testcase_02 AC 1 ms
4,368 KB
testcase_03 AC 2 ms
4,368 KB
testcase_04 AC 3 ms
4,368 KB
testcase_05 AC 3 ms
4,368 KB
testcase_06 AC 3 ms
4,368 KB
testcase_07 AC 3 ms
4,368 KB
testcase_08 AC 3 ms
4,368 KB
testcase_09 AC 7 ms
7,636 KB
testcase_10 AC 5 ms
6,316 KB
testcase_11 AC 15 ms
13,180 KB
testcase_12 AC 10 ms
10,012 KB
testcase_13 AC 5 ms
5,524 KB
testcase_14 AC 71 ms
57,796 KB
testcase_15 AC 36 ms
30,868 KB
testcase_16 AC 100 ms
82,876 KB
testcase_17 AC 127 ms
106,900 KB
testcase_18 AC 224 ms
188,476 KB
testcase_19 AC 196 ms
164,980 KB
testcase_20 AC 147 ms
124,588 KB
testcase_21 AC 175 ms
146,500 KB
testcase_22 AC 11 ms
11,068 KB
testcase_23 AC 79 ms
67,036 KB
testcase_24 AC 4 ms
4,732 KB
testcase_25 AC 4 ms
4,368 KB
testcase_26 AC 2 ms
4,368 KB
testcase_27 AC 3 ms
4,368 KB
testcase_28 AC 3 ms
4,368 KB
testcase_29 AC 270 ms
199,036 KB
testcase_30 AC 269 ms
199,036 KB
testcase_31 AC 2 ms
4,368 KB
testcase_32 AC 2 ms
4,368 KB
testcase_33 AC 2 ms
4,368 KB
testcase_34 AC 207 ms
199,036 KB
testcase_35 AC 206 ms
199,036 KB
testcase_36 AC 268 ms
199,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N,V,C;
  cin>>N>>V>>C;
  vector<array<int,2>>A(N);
  for(auto &i:A)cin>>i[0]>>i[1];
  vector<vector<int>>dp(N*2+1,vector<int>(V+1,-1e9));
  dp[0][0]=0;
  for(int i=0;i<N;i++){
    for(int j=V;j>=0;j--){
      dp[i*2+1][j]=max(dp[i*2+1][j],dp[i*2][j]);
      if(j+A[i][0]<=V){
        dp[i*2+1][j+A[i][0]]=max(dp[i*2+1][j+A[i][0]],dp[i*2][j]+A[i][1]+C);
      }
    }
    for(int j=0;j<=V;j++){
      dp[i*2+2][j]=max(dp[i*2+2][j],dp[i*2+1][j]);
      if(j+A[i][0]<=V){
        dp[i*2+2][j+A[i][0]]=max(dp[i*2+2][j+A[i][0]],dp[i*2+2][j]+A[i][1]);
      }
    }
  }
  cout<<*max_element(dp[N*2].begin(),dp[N*2].end())<<'\n';
}
0