結果

問題 No.1947 質より種類数
ユーザー Nzt3Nzt3
提出日時 2022-05-21 14:28:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 1,619 ms
コンパイル使用メモリ 171,340 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-20 16:14:02
合計ジャッジ時間 3,407 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 4 ms
4,348 KB
testcase_10 AC 3 ms
4,348 KB
testcase_11 AC 6 ms
4,348 KB
testcase_12 AC 5 ms
4,348 KB
testcase_13 AC 3 ms
4,348 KB
testcase_14 AC 20 ms
4,348 KB
testcase_15 AC 11 ms
4,348 KB
testcase_16 AC 28 ms
4,348 KB
testcase_17 AC 37 ms
4,348 KB
testcase_18 AC 63 ms
4,348 KB
testcase_19 AC 55 ms
4,348 KB
testcase_20 AC 42 ms
4,348 KB
testcase_21 AC 50 ms
4,348 KB
testcase_22 AC 4 ms
4,348 KB
testcase_23 AC 23 ms
4,348 KB
testcase_24 AC 2 ms
4,348 KB
testcase_25 AC 2 ms
4,348 KB
testcase_26 AC 2 ms
4,348 KB
testcase_27 AC 3 ms
4,348 KB
testcase_28 AC 2 ms
4,348 KB
testcase_29 AC 100 ms
4,348 KB
testcase_30 AC 101 ms
4,348 KB
testcase_31 AC 2 ms
4,348 KB
testcase_32 AC 2 ms
4,348 KB
testcase_33 AC 2 ms
4,348 KB
testcase_34 AC 40 ms
4,348 KB
testcase_35 AC 41 ms
4,348 KB
testcase_36 AC 101 ms
4,348 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<int>dp(V+1);
  for(int i=0;i<N;i++){
    for(int j=V;j>=0;j--){
      if(j+A[i][0]<=V){
        dp[j+A[i][0]]=max(dp[j+A[i][0]],dp[j]+A[i][1]+C);
      }
    }
    for(int j=0;j<=V;j++){
      if(j+A[i][0]<=V){
        dp[j+A[i][0]]=max(dp[j+A[i][0]],dp[j]+A[i][1]);
      }
    }
  }
  cout<<*max_element(dp.begin(),dp.end())<<'\n';
}
0