結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー granddaifukugranddaifuku
提出日時 2021-11-15 23:57:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 823 ms / 3,000 ms
コード長 1,202 bytes
コンパイル時間 2,287 ms
コンパイル使用メモリ 172,432 KB
実行使用メモリ 6,004 KB
最終ジャッジ日時 2024-05-09 00:38:24
合計ジャッジ時間 15,688 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 517 ms
5,676 KB
testcase_05 AC 823 ms
6,004 KB
testcase_06 AC 132 ms
5,876 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 221 ms
5,376 KB
testcase_09 AC 275 ms
5,376 KB
testcase_10 AC 241 ms
5,376 KB
testcase_11 AC 141 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 305 ms
5,376 KB
testcase_14 AC 533 ms
5,376 KB
testcase_15 AC 453 ms
5,744 KB
testcase_16 AC 359 ms
5,376 KB
testcase_17 AC 220 ms
5,376 KB
testcase_18 AC 398 ms
5,376 KB
testcase_19 AC 47 ms
5,376 KB
testcase_20 AC 93 ms
5,376 KB
testcase_21 AC 203 ms
5,376 KB
testcase_22 AC 431 ms
5,656 KB
testcase_23 AC 474 ms
5,868 KB
testcase_24 AC 789 ms
5,744 KB
testcase_25 AC 733 ms
5,616 KB
testcase_26 AC 526 ms
5,876 KB
testcase_27 AC 784 ms
5,740 KB
testcase_28 AC 556 ms
5,872 KB
testcase_29 AC 788 ms
5,740 KB
testcase_30 AC 567 ms
5,744 KB
testcase_31 AC 589 ms
5,868 KB
testcase_32 AC 795 ms
5,880 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 3 ms
5,376 KB
testcase_39 AC 3 ms
5,376 KB
testcase_40 AC 3 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define rep(i, n) for (int i = 0; i < (int)n; ++i)
#define FOR(i, a, b) for (int i = a; i < (int)b; ++i)
#define rrep(i, n) for (int i = ((int)n - 1); i >= 0; --i)

using ll = long long;
using ld = long double;

__attribute__((unused)) const ll INF = 1e18;
__attribute__((unused)) const int Inf = 1e9;
__attribute__((unused)) const double EPS = 1e-9;
__attribute__((unused)) const ll MOD = 1000000007;

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(0);
  int n, a, b;
  ll x, y;
  cin >> n >> a >> b >> x >> y;
  vector<ll> h(n);
  rep(i, n) cin >> h[i];
  int left = -1, right = Inf, mid;
  while (right - left > 1) {
    mid = (left + right) / 2;
    priority_queue<ll> pq;
    rep(i, n) {
      ll tmp = h[i] - mid;
      if (tmp <= 0) continue;
      pq.push(tmp);
    }
    rep(i, a) {
      if (pq.size() == 0) break;
      ll t = pq.top();
      pq.pop();
      t -= x;
      if (t <= 0) continue;
      pq.push(t);
    }
    ll lim = y * b;
    while (!pq.empty()) {
      ll t = pq.top();
      pq.pop();
      lim -= t;
    }
    if (lim >= 0)
      right = mid;
    else
      left = mid;
  }
  cout << right << endl;

  return 0;
}
0