結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー gotetengoteten
提出日時 2021-11-12 21:59:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,104 bytes
コンパイル時間 1,467 ms
コンパイル使用メモリ 176,212 KB
実行使用メモリ 8,556 KB
最終ジャッジ日時 2024-11-25 18:27:17
合計ジャッジ時間 13,596 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, n) for (int i = 0; i < n; i++)
#define all(x) (x).begin(),(x).end()
const int mod = 1000000007;
const long long INF = 1LL << 60;
using ll = long long;

ll N,A,B,X,Y;
vector<ll> H;

bool solve(ll K){
  
  auto h=H;
  rep(i,N){
    h[i]-=K;
  }

  priority_queue<pair<ll,ll>> que;
  rep(i,N){
    que.push(make_pair(h[i],i));
  }

  rep(iter,A){
    auto Q=que.top();
    ll maxh=Q.first;
    ll i=Q.second;
    que.pop();

    h[i]-=X;
    if(h[i]<0) h[i]=0;
    que.push(make_pair(h[i],i));
  }

  ll sum=0;
  rep(i,N){
    sum+=h[i];
  }
  return !(sum<=B*Y);
  
}

int main()
{
  
  cin >> N >> A >> B >> X >> Y;
  H.resize(N);
  rep(i,N){
    cin >> H[i];
  }

  //[OK,NG)で考える
  ll OK=0;
  ll NG=1001001001;

  while(abs(OK-NG)>1){
    ll mid=(OK+NG)/2;
    if(solve(mid)){
      //midでtrueならOKの下界をmidにまで引き上げる
      OK=mid;
    }
    else{
      //midでfalseならNGの上界を(mid-1)に引き下げる
      NG=mid;
    }
  }
  //OKにtrueの中で最も大きい整数が
  cout << OK+1 << endl;
}
0