結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー simansiman
提出日時 2021-12-22 18:50:00
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 1,059 ms / 3,000 ms
コード長 1,001 bytes
コンパイル時間 1,320 ms
コンパイル使用メモリ 143,304 KB
実行使用メモリ 5,852 KB
最終ジャッジ日時 2024-09-16 13:47:51
合計ジャッジ時間 17,498 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 953 ms
5,852 KB
testcase_05 AC 1,059 ms
5,852 KB
testcase_06 AC 51 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 287 ms
5,376 KB
testcase_09 AC 431 ms
5,484 KB
testcase_10 AC 501 ms
5,376 KB
testcase_11 AC 22 ms
5,376 KB
testcase_12 AC 16 ms
5,376 KB
testcase_13 AC 41 ms
5,376 KB
testcase_14 AC 696 ms
5,376 KB
testcase_15 AC 771 ms
5,848 KB
testcase_16 AC 537 ms
5,376 KB
testcase_17 AC 403 ms
5,376 KB
testcase_18 AC 608 ms
5,376 KB
testcase_19 AC 241 ms
5,376 KB
testcase_20 AC 14 ms
5,376 KB
testcase_21 AC 528 ms
5,580 KB
testcase_22 AC 744 ms
5,640 KB
testcase_23 AC 1,051 ms
5,736 KB
testcase_24 AC 1,047 ms
5,844 KB
testcase_25 AC 1,026 ms
5,720 KB
testcase_26 AC 67 ms
5,376 KB
testcase_27 AC 1,050 ms
5,844 KB
testcase_28 AC 68 ms
5,376 KB
testcase_29 AC 1,046 ms
5,716 KB
testcase_30 AC 1,046 ms
5,848 KB
testcase_31 AC 66 ms
5,376 KB
testcase_32 AC 67 ms
5,376 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 4 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

ll N, A, B, X, Y;
vector<ll> H;

bool f(ll k = 0) {
  priority_queue <ll> pque;

  for (int i = 0; i < N; ++i) {
    pque.push(max(0LL, H[i] - k));
  }

  for (int i = 0; i < A; ++i) {
    ll h = pque.top();
    pque.pop();
    pque.push(h - X);
  }

  ll sum = 0;
  while (not pque.empty()) {
    ll h = pque.top();
    pque.pop();
    sum += max(0LL, h);
  }

  return (sum <= B * Y);
}

int main() {
  cin >> N >> A >> B >> X >> Y;
  H.resize(N);

  for (int i = 0; i < N; ++i) {
    cin >> H[i];
  }

  if (f()) {
    cout << 0 << endl;
    return 0;
  }

  ll ng = 0;
  ll ok = LLONG_MAX;
  while (abs(ok - ng) >= 2) {
    ll k = (ok + ng) / 2;

    if (f(k)) {
      ok = k;
    } else {
      ng = k;
    }
  }

  cout << ok << endl;

  return 0;
}

0