結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー mikammikam
提出日時 2021-11-12 22:24:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,393 bytes
コンパイル時間 2,228 ms
コンパイル使用メモリ 205,932 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 09:30:28
合計ジャッジ時間 19,943 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 886 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 179 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 378 ms
5,376 KB
testcase_09 AC 599 ms
5,376 KB
testcase_10 AC 319 ms
5,376 KB
testcase_11 AC 214 ms
5,376 KB
testcase_12 AC 44 ms
5,376 KB
testcase_13 AC 477 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 798 ms
5,376 KB
testcase_16 AC 252 ms
5,376 KB
testcase_17 AC 359 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 318 ms
5,376 KB
testcase_20 AC 136 ms
5,376 KB
testcase_21 AC 568 ms
5,376 KB
testcase_22 AC 734 ms
5,376 KB
testcase_23 AC 784 ms
5,376 KB
testcase_24 AC 929 ms
5,376 KB
testcase_25 WA -
testcase_26 AC 808 ms
5,376 KB
testcase_27 WA -
testcase_28 AC 824 ms
5,376 KB
testcase_29 WA -
testcase_30 AC 901 ms
5,376 KB
testcase_31 AC 874 ms
5,376 KB
testcase_32 AC 765 ms
5,376 KB
testcase_33 AC 2 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 5 ms
5,376 KB
testcase_40 AC 3 ms
5,376 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include <atcoder/all>
//using namespace atcoder;
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(v) v.begin(),v.end()
typedef long long ll;
#define int ll
using ld = long double;
using vi = vector<int>;
using vs = vector<string>;
using P = pair<int,int>;
template<typename T> bool chmax(T &a, const T b) {if (a < b) {a = b; return true;} else return false; }
template<typename T> bool chmin(T &a, const T b) {if (a > b) {a = b; return true;} else return false; }
const int INF = 1e18;
//using mint = modint1000000007;
//using mint = modint998244353;
int n,a,b,x,y;

bool solve(priority_queue<int> q,int k,int a,int b){
   while(q.size()){
      int t = q.top()-k;q.pop();
      if(t<=0)continue;
      if(a>0){
         if(t>=x){
            int c = t/x;
            t-=c*x;
            a-=c;
            if(t>0)q.push(t+k);
         }
         else a--;
      }
      else{
         b-=t;
      }
   }
   return b>=0;

}
signed main() {
   cin.tie(0);
   ios_base::sync_with_stdio(false);
   cout << fixed << setprecision(20);

   
   cin>>n>>a>>b>>x>>y;
   priority_queue<int> q;
   rep(i,n){
      int h;cin>>h;
      q.push(h);
   }
   b*=y;
   int ng = -1;
   int ok = INF;
   while(abs(ng-ok)>1){
      int mid = (ng+ok)/2;
      if(solve(q,mid,a,b))ok=mid;
      else ng = mid;
   }

   cout << ok <<"\n";
   return 0;
}
0