結果
問題 | No.626 Randomized 01 Knapsack |
ユーザー | rickytheta |
提出日時 | 2017-12-16 00:47:03 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,384 bytes |
コンパイル時間 | 1,644 ms |
コンパイル使用メモリ | 159,700 KB |
実行使用メモリ | 7,888 KB |
最終ジャッジ日時 | 2024-12-17 18:43:51 |
合計ジャッジ時間 | 11,840 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 WA * 3 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:42:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 42 | scanf("%d%lld",&n,&W); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:43:16: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 43 | REP(i,n)scanf("%lld%lld",v+i,w+i); | ~~~~~^~~~~~~~~~~~~~~~~~~~
ソースコード
#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; }