結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー granddaifukugranddaifuku
提出日時 2021-11-15 23:48:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,234 bytes
コンパイル時間 2,096 ms
コンパイル使用メモリ 175,148 KB
実行使用メモリ 6,000 KB
最終ジャッジ日時 2024-05-09 00:27:16
合計ジャッジ時間 12,857 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 WA -
testcase_04 AC 379 ms
5,752 KB
testcase_05 AC 567 ms
5,876 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 158 ms
5,376 KB
testcase_09 AC 192 ms
5,376 KB
testcase_10 AC 178 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 4 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 372 ms
5,408 KB
testcase_15 AC 335 ms
5,744 KB
testcase_16 AC 267 ms
5,376 KB
testcase_17 AC 161 ms
5,376 KB
testcase_18 AC 277 ms
5,376 KB
testcase_19 AC 39 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 137 ms
5,376 KB
testcase_22 AC 318 ms
5,524 KB
testcase_23 AC 340 ms
5,744 KB
testcase_24 AC 561 ms
5,876 KB
testcase_25 AC 494 ms
5,616 KB
testcase_26 WA -
testcase_27 AC 539 ms
5,872 KB
testcase_28 WA -
testcase_29 AC 526 ms
5,772 KB
testcase_30 AC 412 ms
5,744 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 2 ms
5,376 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 2 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;
  ll a, b, x, y;
  cin >> n >> a >> b >> x >> y;
  vector<ll> h(n);
  rep(i, n) { cin >> h[i]; }
  sort(h.begin(), h.end());
  ll left = 0LL, 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