結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー ShirotsumeShirotsume
提出日時 2021-10-29 16:47:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 295 ms / 3,000 ms
コード長 1,260 bytes
コンパイル時間 740 ms
コンパイル使用メモリ 83,952 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-04 04:17:12
合計ジャッジ時間 7,655 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 273 ms
6,940 KB
testcase_05 AC 287 ms
6,940 KB
testcase_06 AC 132 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 160 ms
6,940 KB
testcase_09 AC 218 ms
6,944 KB
testcase_10 AC 86 ms
6,944 KB
testcase_11 AC 76 ms
6,940 KB
testcase_12 AC 9 ms
6,940 KB
testcase_13 AC 181 ms
6,940 KB
testcase_14 AC 204 ms
6,940 KB
testcase_15 AC 278 ms
6,940 KB
testcase_16 AC 75 ms
6,940 KB
testcase_17 AC 141 ms
6,940 KB
testcase_18 AC 112 ms
6,944 KB
testcase_19 AC 79 ms
6,944 KB
testcase_20 AC 58 ms
6,944 KB
testcase_21 AC 180 ms
6,944 KB
testcase_22 AC 240 ms
6,940 KB
testcase_23 AC 282 ms
6,940 KB
testcase_24 AC 279 ms
6,944 KB
testcase_25 AC 263 ms
6,940 KB
testcase_26 AC 295 ms
6,944 KB
testcase_27 AC 268 ms
6,940 KB
testcase_28 AC 290 ms
6,940 KB
testcase_29 AC 278 ms
6,944 KB
testcase_30 AC 260 ms
6,940 KB
testcase_31 AC 287 ms
6,944 KB
testcase_32 AC 285 ms
6,940 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 1 ms
6,944 KB
testcase_38 AC 2 ms
6,948 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <queue>
#include <vector>
#include <algorithm>
using namespace std;
using ll = long long;
ll max(ll a, ll b){
    if(a > b){
        return a;
    }
    else return b;
}
ll sumVector(const vector<ll>& v){
  ll sum = 0;
  for(size_t i=0; i<v.size(); i++){
    sum += v[i];
  }
  return sum;
}
int is_ok(ll k, ll n, ll a, ll b, ll x, ll y, vector<ll> h){
    vector<ll> c(n, 0);
    for(int i = 0; i < n; i++){
        c[i] = max(0, h[i] - k);
    }
    for(int i =0; i < n; i++){
        ll d = min(a, c[i] / x);
        a -= d;
        c[i] -= x * d;
    }
    sort(c.begin(), c.end(), greater<ll>());
    for(int i = 0; i < n; i++){
        if(a > 0){
            c[i] = 0;
            a--;
        }
    }
    if (sumVector(c) <= b * y){
        return 1;
    }
    else return 0;
    
}
using namespace std;
int main(void){
    // Your code here!
    ll n, a, b, x, y;
    cin >> n >> a >> b >> x >> y;
    vector<ll> h(n, 0);
    for(int i = 0; i < n; i++){
        cin >> h[i];
    }
    ll ok = 10e9;
    ll ng = -1;
    while(ok - ng > 1){
        ll mid = (ok + ng) / 2;
        if(is_ok(mid, n, a, b, x, y, h)){
            ok = mid;
        }
        else ng = mid;
    }
    cout << ok << endl;
    
}
0