結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー googol_S0googol_S0
提出日時 2021-11-12 21:56:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 774 ms / 3,000 ms
コード長 613 bytes
コンパイル時間 1,939 ms
コンパイル使用メモリ 207,148 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-25 18:18:46
合計ジャッジ時間 15,771 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 570 ms
6,820 KB
testcase_05 AC 774 ms
6,820 KB
testcase_06 AC 299 ms
6,816 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 217 ms
6,820 KB
testcase_09 AC 308 ms
6,820 KB
testcase_10 AC 274 ms
6,820 KB
testcase_11 AC 166 ms
6,820 KB
testcase_12 AC 9 ms
6,816 KB
testcase_13 AC 333 ms
6,816 KB
testcase_14 AC 506 ms
6,820 KB
testcase_15 AC 484 ms
6,820 KB
testcase_16 AC 346 ms
6,816 KB
testcase_17 AC 228 ms
6,816 KB
testcase_18 AC 412 ms
6,820 KB
testcase_19 AC 99 ms
6,816 KB
testcase_20 AC 93 ms
6,820 KB
testcase_21 AC 268 ms
6,816 KB
testcase_22 AC 452 ms
6,816 KB
testcase_23 AC 523 ms
6,816 KB
testcase_24 AC 748 ms
6,820 KB
testcase_25 AC 712 ms
6,816 KB
testcase_26 AC 557 ms
6,816 KB
testcase_27 AC 749 ms
6,820 KB
testcase_28 AC 565 ms
6,816 KB
testcase_29 AC 752 ms
6,816 KB
testcase_30 AC 603 ms
6,816 KB
testcase_31 AC 608 ms
6,816 KB
testcase_32 AC 733 ms
6,816 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 2 ms
6,820 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 2 ms
6,820 KB
testcase_39 AC 3 ms
6,816 KB
testcase_40 AC 2 ms
6,820 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
  ll N,A,B,X,Y;
  cin>>N>>A>>B>>X>>Y;
  vector<ll> H(N);
  for(int i=0;i<N;i++){
    cin>>H[i];
  }
  ll L=0;
  ll R=1000000000;
  ll M,x;
  while(L<R){
    M=(L+R)>>1;
    priority_queue<ll> que;
    for(int i=0;i<N;i++){
      que.push(max(0LL,H[i]-M));
    }
    for(int i=0;i<A;i++){
      x=que.top();
      que.pop();
      x=max(0LL,x-X);
      que.push(x);
    }
    x=0;
    while(!que.empty()){
      x+=que.top();
      que.pop();
    }
    if(x<=B*Y){
      R=M;
    }else{
      L=max(L+1,M);
    }
  }
  cout<<L<<"\n";
}
0