結果

問題 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  
実行時間 797 ms / 3,000 ms
コード長 613 bytes
コンパイル時間 1,947 ms
コンパイル使用メモリ 207,264 KB
実行使用メモリ 6,104 KB
最終ジャッジ日時 2024-05-04 08:30:47
合計ジャッジ時間 16,227 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 563 ms
5,980 KB
testcase_05 AC 797 ms
5,856 KB
testcase_06 AC 306 ms
5,856 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 231 ms
5,376 KB
testcase_09 AC 315 ms
5,604 KB
testcase_10 AC 291 ms
5,376 KB
testcase_11 AC 171 ms
5,376 KB
testcase_12 AC 10 ms
5,376 KB
testcase_13 AC 341 ms
5,376 KB
testcase_14 AC 531 ms
5,512 KB
testcase_15 AC 515 ms
5,976 KB
testcase_16 AC 370 ms
5,376 KB
testcase_17 AC 244 ms
5,376 KB
testcase_18 AC 421 ms
5,376 KB
testcase_19 AC 103 ms
5,376 KB
testcase_20 AC 92 ms
5,376 KB
testcase_21 AC 274 ms
5,704 KB
testcase_22 AC 464 ms
5,760 KB
testcase_23 AC 563 ms
5,848 KB
testcase_24 AC 774 ms
6,104 KB
testcase_25 AC 737 ms
5,852 KB
testcase_26 AC 601 ms
5,852 KB
testcase_27 AC 763 ms
6,104 KB
testcase_28 AC 582 ms
5,840 KB
testcase_29 AC 791 ms
5,848 KB
testcase_30 AC 623 ms
5,852 KB
testcase_31 AC 626 ms
5,844 KB
testcase_32 AC 769 ms
5,980 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 2 ms
5,376 KB
testcase_39 AC 3 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 2 ms
5,376 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