結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー gotetengoteten
提出日時 2021-11-12 22:58:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 936 bytes
コンパイル時間 1,682 ms
コンパイル使用メモリ 177,344 KB
実行使用メモリ 8,552 KB
最終ジャッジ日時 2024-05-04 10:37:29
合計ジャッジ時間 14,976 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 WA -
testcase_04 AC 557 ms
8,420 KB
testcase_05 AC 636 ms
8,440 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 99 ms
6,940 KB
testcase_09 AC 159 ms
7,940 KB
testcase_10 AC 345 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 15 ms
6,944 KB
testcase_13 WA -
testcase_14 AC 419 ms
7,556 KB
testcase_15 AC 373 ms
8,420 KB
testcase_16 AC 388 ms
6,940 KB
testcase_17 AC 201 ms
6,940 KB
testcase_18 AC 424 ms
6,940 KB
testcase_19 AC 113 ms
6,940 KB
testcase_20 WA -
testcase_21 AC 239 ms
7,760 KB
testcase_22 AC 359 ms
8,316 KB
testcase_23 AC 638 ms
8,540 KB
testcase_24 AC 631 ms
8,416 KB
testcase_25 AC 649 ms
8,420 KB
testcase_26 WA -
testcase_27 AC 646 ms
8,408 KB
testcase_28 WA -
testcase_29 AC 645 ms
8,416 KB
testcase_30 AC 667 ms
8,424 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 1 ms
6,940 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 2 ms
6,944 KB
testcase_39 AC 3 ms
6,940 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, n) for (ll 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;
    if(h[i]<0) h[i]=0;
  }
  

  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){
    if(h[i]>0) sum+=h[i];
  }

  return sum>B*Y;
}

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

  ll OK=0;
  ll NG=10010010010;

  while(abs(OK-NG)>1){
    ll mid=(OK+NG)/2;
    if(solve(mid)){
      OK=mid;
    }
    else{
      NG=mid;
    }
  }
  
  cout << OK+1 << endl;
}
0