結果

問題 No.527 ナップサック容量問題
ユーザー ttakanottakano
提出日時 2017-12-02 12:14:08
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 1,130 bytes
コンパイル時間 1,340 ms
コンパイル使用メモリ 159,312 KB
実行使用メモリ 31,104 KB
最終ジャッジ日時 2024-11-28 03:35:10
合計ジャッジ時間 32,386 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,632 KB
testcase_01 AC 2 ms
10,496 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 5 ms
23,424 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
11,776 KB
testcase_06 AC 2 ms
13,056 KB
testcase_07 TLE -
testcase_08 AC 1 ms
13,640 KB
testcase_09 AC 2 ms
10,496 KB
testcase_10 TLE -
testcase_11 AC 2 ms
10,496 KB
testcase_12 AC 2 ms
12,928 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 3 ms
5,248 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 8 ms
5,248 KB
testcase_20 AC 61 ms
5,760 KB
testcase_21 AC 1,449 ms
22,272 KB
testcase_22 AC 177 ms
13,568 KB
testcase_23 AC 303 ms
19,456 KB
testcase_24 AC 40 ms
5,248 KB
testcase_25 AC 22 ms
11,520 KB
testcase_26 AC 40 ms
9,984 KB
testcase_27 AC 44 ms
10,752 KB
testcase_28 AC 22 ms
9,472 KB
testcase_29 AC 225 ms
23,040 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 3 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 TLE -
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 675 ms
7,168 KB
testcase_38 TLE -
testcase_39 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define print(x) cout<<x<<endl;
#define rep(i,a,b) for(int i=a;i<b;i++)
#define REP(i,a) for(int i=0;i<a;i++)
#define printall(n,array) for(int i=0;i<n;i++){cout<<array[i]<<" ";}cout<<endl;
typedef long long ll;
typedef pair<int, int> PI;
typedef pair<int, PI> V;
typedef vector<int> VE;
const ll mod = 1000000007; //10^9+7

int dp[102][100003];

int main(){
  int n;  cin>>n;
  int w[1002];
  int v[1002];
  int sum_w=0;
  int sum_v=0;
  REP(i,n){
    cin>>v[i]>>w[i];
    sum_v+=v[i];
    sum_w+=w[i];
  }
  int V; cin>>V;
  if(sum_v==V){
    print(sum_w);
    print("inf");
    return 0;
  }
  int max_=0,min_=mod;
  REP(W,sum_w){
    //print(W);
    REP(i,n+1)REP(j,sum_w)dp[i][j]=0;
    for(int i=n-1;i>=0;i--){
      REP(j,W+1){
        if(j<w[i]){
          dp[i][j]=dp[i+1][j];
        }else{
          dp[i][j]=max(dp[i+1][j],dp[i+1][j-w[i]]+v[i]);
        }
      }
    }
    if(dp[0][W]>V)break;
    if(dp[0][W]==V){
      max_=max(max_,W);
      min_=min(min_,W);
      //print("max "<<max_<<" min "<<min_);
    }
  }
  min_=min_==0?1:min_;
  print(min_);
  print(max_);
}
0