結果
問題 | No.527 ナップサック容量問題 |
ユーザー | どらら |
提出日時 | 2017-06-10 06:31:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,472 bytes |
コンパイル時間 | 1,781 ms |
コンパイル使用メモリ | 170,380 KB |
実行使用メモリ | 58,668 KB |
最終ジャッジ日時 | 2024-09-24 15:23:33 |
合計ジャッジ時間 | 6,779 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 85 ms
29,920 KB |
testcase_01 | AC | 101 ms
23,036 KB |
testcase_02 | AC | 951 ms
52,072 KB |
testcase_03 | AC | 101 ms
23,076 KB |
testcase_04 | AC | 51 ms
22,996 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; typedef unsigned long long ull; #define INF 10000000 int N; int v[105]; int w[105]; int V; bool C(int W){ vector<int> dp(W+1, -1); dp[0] = 0; rep(i,N){ for(int j=W; j>=0; j--){ if(dp[j]>=0 && j+w[i]<=W){ dp[j+w[i]] = max(dp[j+w[i]], dp[j] + v[i]); } } } int ret = 0; rep(i,dp.size()){ ret = max(ret, dp[i]); } return ret < V; } bool C2(int W){ vector<int> dp(W+1, -1); dp[0] = 0; rep(i,N){ for(int j=W; j>=0; j--){ if(dp[j]>=0 && j+w[i]<=W){ dp[j+w[i]] = max(dp[j+w[i]], dp[j] + v[i]); } } } int ret = 0; rep(i,dp.size()){ ret = max(ret, dp[i]); } return ret == V; } int main(){ cin >> N; rep(i,N){ cin >> v[i] >> w[i]; } cin >> V; int ret_min, ret_max; { int lb = 0, ub = INF; while(ub-lb>1){ int m = (lb+ub)/2; if(C(m)) lb = m; else ub = m; } ret_min = ub; } { int lb = ret_min, ub = INF; while(ub-lb>1){ int m = (lb+ub)/2; if(C2(m)) lb = m; else ub = m; } ret_max = lb; } cout << ret_min << endl; if(ret_max > 100000){ cout << "inf" << endl; }else{ cout << ret_max << endl; } return 0; }