結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー tko919tko919
提出日時 2021-11-12 23:51:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 288 ms / 3,000 ms
コード長 957 bytes
コンパイル時間 2,033 ms
コンパイル使用メモリ 204,920 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-25 22:30:32
合計ジャッジ時間 8,836 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 263 ms
5,248 KB
testcase_05 AC 265 ms
5,248 KB
testcase_06 AC 96 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 144 ms
5,248 KB
testcase_09 AC 194 ms
5,248 KB
testcase_10 AC 86 ms
5,248 KB
testcase_11 AC 77 ms
5,248 KB
testcase_12 AC 8 ms
5,248 KB
testcase_13 AC 166 ms
5,248 KB
testcase_14 AC 181 ms
5,248 KB
testcase_15 AC 250 ms
5,248 KB
testcase_16 AC 70 ms
5,248 KB
testcase_17 AC 125 ms
5,248 KB
testcase_18 AC 104 ms
5,248 KB
testcase_19 AC 63 ms
5,248 KB
testcase_20 AC 55 ms
5,248 KB
testcase_21 AC 157 ms
5,248 KB
testcase_22 AC 229 ms
5,248 KB
testcase_23 AC 259 ms
5,248 KB
testcase_24 AC 276 ms
5,248 KB
testcase_25 AC 227 ms
5,248 KB
testcase_26 AC 282 ms
5,248 KB
testcase_27 AC 253 ms
5,248 KB
testcase_28 AC 275 ms
5,248 KB
testcase_29 AC 246 ms
5,248 KB
testcase_30 AC 268 ms
5,248 KB
testcase_31 AC 288 ms
5,248 KB
testcase_32 AC 266 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 3 ms
5,248 KB
testcase_39 AC 3 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 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