結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー tko919tko919
提出日時 2021-11-12 23:51:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 274 ms / 3,000 ms
コード長 957 bytes
コンパイル時間 1,797 ms
コンパイル使用メモリ 206,124 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-04 11:45:34
合計ジャッジ時間 8,085 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 243 ms
5,376 KB
testcase_05 AC 255 ms
5,376 KB
testcase_06 AC 90 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 135 ms
5,376 KB
testcase_09 AC 185 ms
5,376 KB
testcase_10 AC 79 ms
5,376 KB
testcase_11 AC 72 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 163 ms
5,376 KB
testcase_14 AC 186 ms
5,376 KB
testcase_15 AC 243 ms
5,376 KB
testcase_16 AC 67 ms
6,944 KB
testcase_17 AC 120 ms
6,944 KB
testcase_18 AC 97 ms
6,940 KB
testcase_19 AC 63 ms
6,940 KB
testcase_20 AC 53 ms
6,940 KB
testcase_21 AC 155 ms
6,944 KB
testcase_22 AC 224 ms
6,944 KB
testcase_23 AC 251 ms
6,940 KB
testcase_24 AC 266 ms
6,944 KB
testcase_25 AC 220 ms
6,944 KB
testcase_26 AC 268 ms
6,940 KB
testcase_27 AC 239 ms
6,944 KB
testcase_28 AC 273 ms
6,940 KB
testcase_29 AC 240 ms
6,944 KB
testcase_30 AC 253 ms
6,944 KB
testcase_31 AC 274 ms
6,940 KB
testcase_32 AC 253 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 1 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 3 ms
6,940 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define ALL(v) (v).begin(),(v).end()
using ll=long long int;
const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12;
template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}



int main(){
    int n,a,b,x,y;
    cin>>n>>a>>b>>x>>y;
    vector<int> h(n);
    rep(i,0,n)cin>>h[i];

    int L=-1,R=inf;
    while(R-L>1){
        int mid=(L+R)>>1;
        vector<int> H(n);
        rep(i,0,n)H[i]=max(0,h[i]-mid);
        int cnt=0;
        rep(i,0,n){
            int add=max(0,min(a-cnt,H[i]/x));
            H[i]-=add*x;
            cnt+=add;
        }
        sort(ALL(H));
        ll sum=0;
        rep(i,0,n-(a-cnt))sum+=H[i];
        if(sum<=ll(b)*y)R=mid;
        else L=mid;
    }
    cout<<R<<'\n';
    return 0;
}
0