結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー simansiman
提出日時 2021-12-22 18:48:38
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 987 bytes
コンパイル時間 3,969 ms
コンパイル使用メモリ 142,028 KB
実行使用メモリ 5,856 KB
最終ジャッジ日時 2024-09-16 13:46:24
合計ジャッジ時間 24,819 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 887 ms
5,728 KB
testcase_05 AC 1,007 ms
5,848 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 265 ms
5,376 KB
testcase_09 AC 382 ms
5,608 KB
testcase_10 AC 455 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 14 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 640 ms
5,384 KB
testcase_15 AC 727 ms
5,720 KB
testcase_16 AC 492 ms
5,376 KB
testcase_17 AC 371 ms
5,376 KB
testcase_18 AC 555 ms
5,376 KB
testcase_19 AC 213 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 478 ms
5,456 KB
testcase_22 AC 653 ms
5,628 KB
testcase_23 AC 958 ms
5,720 KB
testcase_24 AC 951 ms
5,720 KB
testcase_25 AC 926 ms
5,848 KB
testcase_26 WA -
testcase_27 AC 949 ms
5,840 KB
testcase_28 WA -
testcase_29 AC 961 ms
5,716 KB
testcase_30 AC 960 ms
5,720 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 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;
  }

  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