結果

問題 No.527 ナップサック容量問題
ユーザー saxofone111saxofone111
提出日時 2021-04-16 12:25:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,810 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 209,900 KB
実行使用メモリ 144,600 KB
最終ジャッジ日時 2024-07-02 14:09:24
合計ジャッジ時間 20,524 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,168 KB
testcase_01 AC 18 ms
7,936 KB
testcase_02 AC 118 ms
9,672 KB
testcase_03 AC 19 ms
7,936 KB
testcase_04 AC 10 ms
5,576 KB
testcase_05 AC 1,209 ms
69,072 KB
testcase_06 TLE -
testcase_07 AC 297 ms
58,112 KB
testcase_08 AC 1,032 ms
59,596 KB
testcase_09 AC 91 ms
7,892 KB
testcase_10 AC 804 ms
72,192 KB
testcase_11 AC 1,801 ms
100,824 KB
testcase_12 AC 1,278 ms
74,364 KB
testcase_13 TLE -
testcase_14 AC 140 ms
29,056 KB
testcase_15 AC 184 ms
44,032 KB
testcase_16 AC 18 ms
7,936 KB
testcase_17 AC 232 ms
36,864 KB
testcase_18 AC 295 ms
41,472 KB
testcase_19 AC 21 ms
8,704 KB
testcase_20 AC 101 ms
30,592 KB
testcase_21 AC 301 ms
83,200 KB
testcase_22 AC 198 ms
56,576 KB
testcase_23 AC 292 ms
80,768 KB
testcase_24 AC 64 ms
19,584 KB
testcase_25 AC 197 ms
54,784 KB
testcase_26 AC 177 ms
49,408 KB
testcase_27 AC 170 ms
50,432 KB
testcase_28 AC 146 ms
44,032 KB
testcase_29 AC 294 ms
82,432 KB
testcase_30 AC 316 ms
20,568 KB
testcase_31 AC 132 ms
37,888 KB
testcase_32 AC 162 ms
45,440 KB
testcase_33 AC 138 ms
39,296 KB
testcase_34 AC 167 ms
46,976 KB
testcase_35 AC 319 ms
47,104 KB
testcase_36 AC 15 ms
7,168 KB
testcase_37 AC 125 ms
36,096 KB
testcase_38 AC 214 ms
44,928 KB
testcase_39 AC 277 ms
41,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

#define MOD 1000000007
#define rep(i, n) for(ll i=0; i < (n); i++)
#define rrep(i, n) for(ll i=(n)-1; i >=0; i--)
#define ALL(v) v.begin(),v.end()
#define rALL(v) v.rbegin(),v.rend()
#define FOR(i, j, k) for(ll i=j;i<k;i++)
#define debug_print(var) cerr << #var << "=" << var <<endl;
#define DUMP(i, v)for(ll i=0;i<v.size();i++)cerr<<v[i]<<" "
#define fi first
#define se second

using namespace std;
typedef long long int ll;
typedef vector<ll> llvec;
typedef vector<double> dvec;
typedef pair<ll, ll> P;
typedef long double ld;
struct edge{ll x, c;};

/**************************************
** A main function starts from here  **
***************************************/
int main(){
  ll N;
  cin >> N;

  llvec v(N);
  llvec w(N);

  rep(i, N){
    cin >> v[i] >> w[i];
  }


  ll ok = 200000;
  ll ng = 0;
  ll V;
  cin >> V;

  while(abs(ok-ng)>1){
    ll m = (ok+ng) / 2;
    vector<llvec> dp(N+1, llvec(m+1, 0));
    rep(i, N){
      rep(j, m+1){
        dp[i+1][j] = max(dp[i][j], dp[i+1][j]);
        if(j+w[i]<=m){
          dp[i+1][j+w[i]] = max(dp[i][j] + v[i], dp[i+1][j+w[i]]);
        }
      }
    }
    sort(ALL(dp[N]));
    if(dp[N].back()>=V){
      ok = m;
    }else{
      ng = m;
    }
  }
  ll ans1 = ok;

  ok = 200000;
  ng = 0;
  
  while(abs(ok-ng)>1){
    ll m = (ok+ng) / 2;
    vector<llvec> dp(N+1, llvec(m+1, 0));
    rep(i, N){
      rep(j, m+1){
        dp[i+1][j] = max(dp[i][j], dp[i+1][j]);
        if(j+w[i]<=m){
          dp[i+1][j+w[i]] = max(dp[i][j] + v[i], dp[i+1][j+w[i]]);
        }
      }
    }
    sort(ALL(dp[N]));
    if(dp[N].back()>V){
      ok = m;
    }else{
      ng = m;
    }
  }
  ll ans2 = ng;
  if(ans2<=1e5){
    cout << ans1 << endl << ans2 << endl;
  }else{
    cout << ans1 << endl << "inf" << endl;
  }
  return 0;
}
0