結果

問題 No.2161 Black Market
ユーザー LanatusLanatus
提出日時 2022-12-15 20:26:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,908 bytes
コンパイル時間 2,339 ms
コンパイル使用メモリ 210,076 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-04-26 20:29:55
合計ジャッジ時間 11,845 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 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 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 55 ms
5,376 KB
testcase_21 AC 58 ms
5,376 KB
testcase_22 AC 26 ms
5,376 KB
testcase_23 AC 252 ms
5,376 KB
testcase_24 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define all(v) begin(v), end(v)

using namespace std;

const int MOD = 1e9 + 7;

using ull = unsigned long long;
using ll  = long long;
using ld  = long double;

template <class S, class T> inline bool chmax(S &a, const T &b) { if (a < b) { a = b; return true; } return false; }
template <class S, class T> inline bool chmin(S &a, const T &b) { if (a > b) { a = b; return true; } return false; }
template <class S> using pq  = priority_queue<S>;
template <class S> using pqg = priority_queue<S, vector<S>, greater<S>>;


int main() {
  int n, k;
  ll l, p;
  cin >> n >> k >> l >> p;

  vector<ll> a(n), b(n);
  for (int i = 0; i < n; i++) cin >> a[i] >> b[i];

  vector<map<ll,vector<ll>>> cnt(n);
  for (int bit = 0; bit < (1 << (n / 2)); ++bit) {
    bool ok = true;
    int num = 0;
    ll cost = 0, value = 0;
    
    for (int i = 0; i < n / 2; ++i) {
      if (num > k || cost > l) {
        ok = false;
        break;
      }

      if (bit & (1 << i)) {
        ++num;
        cost += a[i];
        value += b[i];
      }
    }

    if (ok) cnt[num][cost].push_back(value);
  }

  for (int i = 0; i < n; ++i) {
    for (auto &&[a, v] : cnt[i]) {
      sort(all(v));
    }
  }

  ll ans = 0;

  for (int bit = 0; bit < (1 << (n - n / 2)); ++bit) {
    bool ok = true;
    int num = 0;
    ll cost = 0, value = 0;

    for (int i = 0; i < (n - n / 2); ++i) {
      if (num > k || cost > l) {
        ok = false;
        break;
      }

      if (bit & (1 << i)) {
        ++num;
        cost += a[i + n / 2];
        value += b[i + n / 2];
      }
    }

    if (!ok) continue;

    for (int i = 0; i <= k - num; ++i) {
      if (cnt[i].empty()) continue;

      for (auto &&[a, v] : cnt[i]) {
        if (a > (l - cost)) break;
        if (v.empty()) continue;

        ans += v.end() - lower_bound(all(v), p - value);
      }
    }
  }

  cout << ans << endl;
  return 0;
}
0