結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー se1ka2se1ka2
提出日時 2021-11-12 21:37:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 768 ms / 3,000 ms
コード長 782 bytes
コンパイル時間 713 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-04 07:41:14
合計ジャッジ時間 14,005 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 543 ms
6,944 KB
testcase_05 AC 768 ms
6,944 KB
testcase_06 AC 303 ms
6,944 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 217 ms
6,944 KB
testcase_09 AC 301 ms
6,944 KB
testcase_10 AC 264 ms
6,940 KB
testcase_11 AC 165 ms
6,940 KB
testcase_12 AC 9 ms
6,940 KB
testcase_13 AC 323 ms
6,944 KB
testcase_14 AC 515 ms
6,944 KB
testcase_15 AC 471 ms
6,944 KB
testcase_16 AC 341 ms
6,944 KB
testcase_17 AC 228 ms
6,940 KB
testcase_18 AC 395 ms
6,940 KB
testcase_19 AC 100 ms
6,944 KB
testcase_20 AC 89 ms
6,940 KB
testcase_21 AC 263 ms
6,944 KB
testcase_22 AC 446 ms
6,940 KB
testcase_23 AC 530 ms
6,940 KB
testcase_24 AC 730 ms
6,940 KB
testcase_25 AC 692 ms
6,940 KB
testcase_26 AC 542 ms
6,944 KB
testcase_27 AC 730 ms
6,940 KB
testcase_28 AC 553 ms
6,940 KB
testcase_29 AC 747 ms
6,940 KB
testcase_30 AC 581 ms
6,944 KB
testcase_31 AC 586 ms
6,944 KB
testcase_32 AC 716 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,944 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 2 ms
6,944 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 AC 2 ms
6,944 KB
testcase_42 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
using namespace std;
typedef long long ll;

int main()
{
    int n, a, b;
    ll x, y;
    cin >> n >> a >> b >> x >> y;
    ll h[100005];
    for(int i = 0; i < n; i++) cin >> h[i];
    ll left = -1, right = 1000000000;
    while(right - left > 1){
        ll mid = (right + left) / 2;
        priority_queue<ll> que;
        for(int i = 0; i < n; i++) que.push(max(0ll, h[i] - mid));
        for(int i = 0; i < a; i++){
            ll u = que.top();
            que.pop();
            u = max(0ll, u - x);
            que.push(u);
        }
        ll s = 0;
        while(que.size()){
            s += que.top();
            que.pop();
        }
        if(s <= b * y) right = mid;
        else left = mid;
    }
    cout << right << endl;
}
0