結果
問題 | No.527 ナップサック容量問題 |
ユーザー | jupiro |
提出日時 | 2020-01-16 03:39:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 86 ms / 2,000 ms |
コード長 | 1,661 bytes |
コンパイル時間 | 1,071 ms |
コンパイル使用メモリ | 118,020 KB |
実行使用メモリ | 83,200 KB |
最終ジャッジ日時 | 2024-06-23 00:43:31 |
合計ジャッジ時間 | 3,765 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
7,168 KB |
testcase_01 | AC | 6 ms
7,936 KB |
testcase_02 | AC | 4 ms
6,528 KB |
testcase_03 | AC | 7 ms
7,936 KB |
testcase_04 | AC | 3 ms
5,504 KB |
testcase_05 | AC | 36 ms
36,224 KB |
testcase_06 | AC | 72 ms
71,552 KB |
testcase_07 | AC | 58 ms
58,112 KB |
testcase_08 | AC | 30 ms
31,488 KB |
testcase_09 | AC | 5 ms
5,632 KB |
testcase_10 | AC | 73 ms
72,320 KB |
testcase_11 | AC | 51 ms
51,840 KB |
testcase_12 | AC | 36 ms
38,656 KB |
testcase_13 | AC | 77 ms
73,728 KB |
testcase_14 | AC | 28 ms
29,056 KB |
testcase_15 | AC | 44 ms
44,160 KB |
testcase_16 | AC | 6 ms
8,064 KB |
testcase_17 | AC | 35 ms
36,992 KB |
testcase_18 | AC | 42 ms
41,728 KB |
testcase_19 | AC | 7 ms
8,832 KB |
testcase_20 | AC | 30 ms
30,720 KB |
testcase_21 | AC | 86 ms
83,200 KB |
testcase_22 | AC | 57 ms
56,576 KB |
testcase_23 | AC | 83 ms
80,896 KB |
testcase_24 | AC | 17 ms
19,712 KB |
testcase_25 | AC | 56 ms
54,784 KB |
testcase_26 | AC | 50 ms
49,408 KB |
testcase_27 | AC | 50 ms
50,304 KB |
testcase_28 | AC | 42 ms
44,160 KB |
testcase_29 | AC | 82 ms
82,432 KB |
testcase_30 | AC | 9 ms
11,776 KB |
testcase_31 | AC | 35 ms
37,760 KB |
testcase_32 | AC | 42 ms
45,696 KB |
testcase_33 | AC | 37 ms
39,424 KB |
testcase_34 | AC | 45 ms
47,232 KB |
testcase_35 | AC | 47 ms
47,232 KB |
testcase_36 | AC | 6 ms
7,296 KB |
testcase_37 | AC | 35 ms
36,224 KB |
testcase_38 | AC | 44 ms
44,672 KB |
testcase_39 | AC | 42 ms
41,600 KB |
ソースコード
#include <cstdio> #include <iostream> #include <string> #include <sstream> #include <stack> #include <algorithm> #include <cmath> #include <queue> #include <map> #include <set> #include <cstdlib> #include <bitset> #include <tuple> #include <assert.h> #include <deque> #include <bitset> #include <iomanip> #include <limits> #include <chrono> #include <random> #include <array> #include <unordered_map> #include <functional> #include <complex> template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const long long MAX = 5100000; const long long INF = 1LL << 60; const long long mod = 1000000007LL; //const long long mod = 998244353LL; using namespace std; typedef unsigned long long ull; typedef long long ll; int main() { /* cin.tie(nullptr); ios::sync_with_stdio(false); */ const ll MAX = 100050; ll N; scanf("%lld", &N); vector<ll> v(N), w(N); for (ll i = 0; i < N; i++) scanf("%lld %lld", &v[i], &w[i]); ll V; scanf("%lld", &V); vector<vector<ll>> dp(N + 1, vector<ll>(MAX, -1)); dp[0][0] = 0; ll sum = 0; for (ll i = 0; i < N; i++) { sum += w[i]; for (ll j = 0; j < MAX; j++) { chmax(dp[i + 1][j], dp[i][j]); if (dp[i][j] == -1) continue; chmax(dp[i + 1][j + w[i]], dp[i][j] + v[i]); } } ll mn = INF; ll mx = 1; for (ll i = 0; i < MAX - 1; i++) { chmax(dp[N][i + 1], dp[N][i]); if (i == 0) continue; if (dp[N][i] == V) { chmin(mn, i); chmax(mx, i); } } if (mx >= sum) { cout << mn << "\n" << "inf" << endl; } else { cout << mn << "\n" << mx << endl; } return 0; }