結果

問題 No.626 Randomized 01 Knapsack
ユーザー rickythetarickytheta
提出日時 2017-12-16 00:47:03
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,384 bytes
コンパイル時間 1,245 ms
コンパイル使用メモリ 144,072 KB
実行使用メモリ 7,600 KB
最終ジャッジ日時 2023-08-22 18:09:39
合計ジャッジ時間 11,147 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,292 KB
testcase_01 AC 9 ms
6,604 KB
testcase_02 AC 12 ms
6,524 KB
testcase_03 AC 13 ms
7,528 KB
testcase_04 AC 21 ms
6,500 KB
testcase_05 AC 7 ms
5,892 KB
testcase_06 AC 118 ms
7,600 KB
testcase_07 AC 115 ms
7,532 KB
testcase_08 AC 150 ms
6,864 KB
testcase_09 AC 134 ms
6,572 KB
testcase_10 AC 438 ms
7,512 KB
testcase_11 AC 600 ms
6,552 KB
testcase_12 AC 871 ms
7,148 KB
testcase_13 AC 28 ms
6,612 KB
testcase_14 AC 178 ms
5,972 KB
testcase_15 AC 460 ms
6,256 KB
testcase_16 AC 772 ms
6,864 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1,051 ms
7,512 KB
testcase_21 AC 25 ms
6,664 KB
testcase_22 AC 382 ms
5,924 KB
testcase_23 AC 762 ms
6,932 KB
testcase_24 AC 5 ms
4,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;

typedef int _loop_int;
#define REP(i,n) for(_loop_int i=0;i<(_loop_int)(n);++i)
#define FOR(i,a,b) for(_loop_int i=(_loop_int)(a);i<(_loop_int)(b);++i)
#define FORR(i,a,b) for(_loop_int i=(_loop_int)(b)-1;i>=(_loop_int)(a);--i)

#define DEBUG(x) cout<<#x<<": "<<x<<endl
#define DEBUG_VEC(v) cout<<#v<<":";REP(i,v.size())cout<<" "<<v[i];cout<<endl
#define ALL(a) (a).begin(),(a).end()

#define CHMIN(a,b) a=min((a),(b))
#define CHMAX(a,b) a=max((a),(b))

// mod
const ll MOD = 1000000007ll;
#define FIX(a) ((a)%MOD+MOD)%MOD

// floating
typedef double Real;
const Real EPS = 1e-11;
#define EQ0(x) (abs(x)<EPS)
#define EQ(a,b) (abs(a-b)<EPS)
typedef complex<Real> P;

#define sz 19

int n;
ll W;
ll v[5252], w[5252];
ll dp[1<<sz];

int main(){
  scanf("%d%lld",&n,&W);
  REP(i,n)scanf("%lld%lld",v+i,w+i);
  int Wbit = 0;
  {
    ll tmp = W;
    while(tmp>0){
      tmp /= 2;
      Wbit++;
    }
  }
  int sh = max(0, Wbit - sz);
  int admsk = (1<<sh) - 1;
  REP(i,n){
    w[i] = (w[i]+admsk) >> sh;
  }
  W = W >> sh;
  REP(i,n){
    int ww = w[i];
    ll vv = v[i];
    FORR(j,0,W-ww+1){
      CHMAX(dp[j+ww], dp[j]+vv);
    }
  }
  ll ans = 0;
  REP(i,W+1)CHMAX(ans,dp[i]);
  printf("%lld\n", ans);
  return 0;
}
0