結果

問題 No.527 ナップサック容量問題
ユーザー vvataarnevvataarne
提出日時 2017-06-09 22:36:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 1,929 bytes
コンパイル時間 1,622 ms
コンパイル使用メモリ 176,060 KB
実行使用メモリ 83,200 KB
最終ジャッジ日時 2024-09-22 15:26:58
合計ジャッジ時間 4,130 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,296 KB
testcase_01 AC 6 ms
7,936 KB
testcase_02 AC 5 ms
6,944 KB
testcase_03 AC 6 ms
7,936 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 33 ms
36,096 KB
testcase_06 AC 65 ms
71,552 KB
testcase_07 AC 53 ms
58,240 KB
testcase_08 AC 29 ms
31,616 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 66 ms
72,192 KB
testcase_11 AC 46 ms
51,840 KB
testcase_12 AC 34 ms
38,528 KB
testcase_13 AC 68 ms
73,728 KB
testcase_14 AC 26 ms
29,056 KB
testcase_15 AC 41 ms
44,288 KB
testcase_16 AC 6 ms
7,936 KB
testcase_17 AC 33 ms
36,864 KB
testcase_18 AC 37 ms
41,728 KB
testcase_19 AC 7 ms
8,704 KB
testcase_20 AC 27 ms
30,720 KB
testcase_21 AC 75 ms
83,200 KB
testcase_22 AC 50 ms
56,576 KB
testcase_23 AC 72 ms
80,768 KB
testcase_24 AC 17 ms
19,712 KB
testcase_25 AC 49 ms
54,912 KB
testcase_26 AC 44 ms
49,536 KB
testcase_27 AC 44 ms
50,432 KB
testcase_28 AC 39 ms
44,032 KB
testcase_29 AC 74 ms
82,432 KB
testcase_30 AC 10 ms
11,904 KB
testcase_31 AC 34 ms
37,888 KB
testcase_32 AC 42 ms
45,568 KB
testcase_33 AC 36 ms
39,296 KB
testcase_34 AC 44 ms
47,104 KB
testcase_35 AC 43 ms
47,232 KB
testcase_36 AC 5 ms
7,168 KB
testcase_37 AC 32 ms
36,096 KB
testcase_38 AC 40 ms
44,800 KB
testcase_39 AC 38 ms
41,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// clang-format off
#include <bits/stdc++.h>
#define int long long
#define main signed main()
// #define main int main()
#define loop(i, a, n) for (int i = (a); i < (n); i++)
#define rep(i, n) loop(i, 0, n)
#define all(v) (v).begin(), (v).end()
#define rall(v) (v).rbegin(), (v).rend()
#define prec(n) fixed << setprecision(n)
#define stlice(from, to) substr(from, (to) - (from) + 1)
#define pb push_back
#define mp make_pair
#define mt make_tuple
#define fi first
#define se second
using namespace std;
using pii = pair<int, int>;
using vi = vector<int>;
using vd = vector<double>;
using vc = vector<char>;
using vb = vector<bool>;
using vs = vector<string>;
using vpii = vector<pii>;
using vvi = vector<vi>;
using vvb = vector<vb>;
using vvpii = vector<vpii>;
template<typename A> using fn = function<A>;
constexpr int INF = sizeof(int) == sizeof(long long) ? 1000000000000000000LL : 1000000000;
constexpr int MOD = 1000000007;
constexpr double PI = acos(-1);
template<typename A, typename B> bool cmin(A &a, const B &b) { return a > b ? (a = b, true) : false; }
template<typename A, typename B> bool cmax(A &a, const B &b) { return a < b ? (a = b, true) : false; }
constexpr bool odd(const int &n) { return n & 1; }
constexpr bool even(const int &n) { return !odd(n); }
void solve();
main { solve(); return 0; }
// clang-format on

void solve() {
  int n;
  cin >> n;
  vi v(n), w(n);
  rep(i, n) cin >> v[i] >> w[i];
  int V;
  cin >> V;
  int W = 100000;
  vvi dp(n + 1, vi(W + 1));
  for (int i = n - 1; i >= 0; i--) {
    rep(j, W + 1) {
      if (j < w[i]) {
        dp[i][j] = dp[i + 1][j];
      } else {
        dp[i][j] = max(dp[i + 1][j], dp[i + 1][j - w[i]] + v[i]);
      }
    }
  }
  int a  = distance(dp[0].begin(), lower_bound(all(dp[0]), V));
  auto b = upper_bound(all(dp[0]), V);
  a += a == 0;
  cout << a << '\n'
       << (b == dp[0].end() ? "inf" : to_string(distance(dp[0].begin(), b) - 1)) << endl;
}
0