結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー 👑 CleyLCleyL
提出日時 2021-12-25 11:43:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 846 ms / 3,000 ms
コード長 1,080 bytes
コンパイル時間 882 ms
コンパイル使用メモリ 77,180 KB
実行使用メモリ 5,980 KB
最終ジャッジ日時 2024-09-21 13:45:09
合計ジャッジ時間 15,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 549 ms
5,852 KB
testcase_05 AC 846 ms
5,980 KB
testcase_06 AC 166 ms
5,856 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 239 ms
5,376 KB
testcase_09 AC 301 ms
5,376 KB
testcase_10 AC 253 ms
5,376 KB
testcase_11 AC 150 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 326 ms
5,376 KB
testcase_14 AC 549 ms
5,512 KB
testcase_15 AC 485 ms
5,852 KB
testcase_16 AC 366 ms
5,376 KB
testcase_17 AC 234 ms
5,376 KB
testcase_18 AC 409 ms
5,376 KB
testcase_19 AC 62 ms
5,376 KB
testcase_20 AC 99 ms
5,376 KB
testcase_21 AC 230 ms
5,376 KB
testcase_22 AC 462 ms
5,504 KB
testcase_23 AC 507 ms
5,716 KB
testcase_24 AC 831 ms
5,944 KB
testcase_25 AC 752 ms
5,720 KB
testcase_26 AC 552 ms
5,848 KB
testcase_27 AC 810 ms
5,720 KB
testcase_28 AC 566 ms
5,848 KB
testcase_29 AC 815 ms
5,852 KB
testcase_30 AC 595 ms
5,716 KB
testcase_31 AC 618 ms
5,968 KB
testcase_32 AC 821 ms
5,856 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 3 ms
5,376 KB
testcase_39 AC 3 ms
5,376 KB
testcase_40 AC 3 ms
5,376 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <queue>
using namespace std;
long long n,a,b,x,y;
vector<long long> R;
bool solve(long long ce){
    int nwa = a;
    priority_queue<long long,vector<long long>> A;
    for(int i = 0; n > i; i++){
      
        if(R[i]-ce > 0){
          A.push(R[i]-ce);
        }
    }
    while(nwa){
        if(A.size() == 0){
          return true;
        }
        auto z = A.top();A.pop();
        if(z > x){
            A.push(z-x);
        }
        nwa--;
    }
    long long size = 0;
    while(A.size()){
        auto z = A.top();A.pop();
        size+=z;
    }
    if(size > b*y){
      if(ce == 6)cout << size << " " << b*y << endl;
        return false;
    }else{
      
        return true;
    }
    

}

int main(){
  cin>>n>>a>>b>>x>>y;
  for(int i = 0; n > i; i++){
    int t;cin>>t;
    R.push_back(t);
  }
  long long mn = -1;
  long long mx = 1000000000;
  while(abs(mn-mx) > 1){
    long long ce = (mn+mx)/2;
    if(solve(ce)){
      mx = ce;
    }else{
      mn = ce;
    }
  }
  cout << mx << endl;
}
0