結果

問題 No.2026 Yet Another Knapsack Problem
ユーザー 👑 hos.lyrichos.lyric
提出日時 2022-07-29 22:28:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 253 ms / 10,000 ms
コード長 2,191 bytes
コンパイル時間 1,396 ms
コンパイル使用メモリ 114,600 KB
実行使用メモリ 52,736 KB
最終ジャッジ日時 2024-07-19 15:36:30
合計ジャッジ時間 4,730 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 8 ms
7,040 KB
testcase_29 AC 9 ms
7,424 KB
testcase_30 AC 10 ms
7,296 KB
testcase_31 AC 9 ms
7,296 KB
testcase_32 AC 8 ms
6,784 KB
testcase_33 AC 9 ms
7,680 KB
testcase_34 AC 9 ms
7,296 KB
testcase_35 AC 7 ms
6,656 KB
testcase_36 AC 9 ms
7,040 KB
testcase_37 AC 9 ms
7,040 KB
testcase_38 AC 243 ms
52,736 KB
testcase_39 AC 230 ms
52,692 KB
testcase_40 AC 236 ms
52,652 KB
testcase_41 AC 253 ms
52,656 KB
testcase_42 AC 245 ms
52,652 KB
testcase_43 AC 248 ms
52,664 KB
testcase_44 AC 248 ms
52,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("Ofast")
#pragma GCC optimize ("unroll-loops")

#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>

using namespace std;

using Int = long long;

template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; }
template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; }
template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; }


constexpr Int INF = 1001001001001001001LL;

int N;
vector<int> C;
vector<Int> V;

Int dp[2510][2510];

int main() {
  for (; ~scanf("%d", &N); ) {
    C.resize(N + 1);
    V.resize(N + 1);
    for (int i = 1; i <= N; ++i) {
      scanf("%d%lld", &C[i], &V[i]);
    }
    
    for (int k = 0; k <= N; ++k) {
      fill(dp[k], dp[k] + (N + 1), -INF);
    }
    fill(dp[0], dp[0] + (N + 1), 0);
    for (int i = N; i >= 1; --i) {
      for (int c = min(C[i], N / i), e = 0; c > 0; ++e) {
        const int cc = min(c, 1 << e);
        c -= cc;
        const int dk = cc;
        const int dx = cc * i;
        const Int dv = cc * V[i];
        for (int k = N / i - dk; k >= 0; --k) {
          for (int x = 0; x <= N - dx; ++x) {
            chmax(dp[k + dk][x + dx], dp[k][x] + dv);
          }
        }
      }
    }
    
    for (int k = 1; k <= N; ++k) {
      printf("%lld\n", dp[k][N]);
    }
#ifdef LOCAL
cerr<<"========"<<endl;
#endif
  }
  return 0;
}
0