結果

問題 No.1947 質より種類数
ユーザー Nzt3Nzt3
提出日時 2022-05-21 14:26:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 1,458 ms
コンパイル使用メモリ 172,604 KB
実行使用メモリ 199,040 KB
最終ジャッジ日時 2024-09-20 11:46:56
合計ジャッジ時間 4,838 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 7 ms
7,552 KB
testcase_10 AC 5 ms
6,272 KB
testcase_11 AC 12 ms
13,056 KB
testcase_12 AC 9 ms
9,984 KB
testcase_13 AC 4 ms
5,504 KB
testcase_14 AC 67 ms
57,856 KB
testcase_15 AC 36 ms
30,848 KB
testcase_16 AC 94 ms
83,072 KB
testcase_17 AC 123 ms
106,752 KB
testcase_18 AC 220 ms
188,544 KB
testcase_19 AC 190 ms
164,992 KB
testcase_20 AC 143 ms
124,544 KB
testcase_21 AC 168 ms
146,432 KB
testcase_22 AC 10 ms
11,136 KB
testcase_23 AC 75 ms
67,200 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 265 ms
198,912 KB
testcase_30 AC 261 ms
199,040 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 205 ms
199,040 KB
testcase_35 AC 200 ms
199,040 KB
testcase_36 AC 260 ms
199,040 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