結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー ゆにぽけゆにぽけ
提出日時 2023-10-19 09:39:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 512 ms / 3,000 ms
コード長 1,008 bytes
コンパイル時間 1,309 ms
コンパイル使用メモリ 131,772 KB
実行使用メモリ 5,880 KB
最終ジャッジ日時 2024-09-19 05:52:33
合計ジャッジ時間 12,201 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 8 ms
5,376 KB
testcase_04 AC 409 ms
5,876 KB
testcase_05 AC 506 ms
5,876 KB
testcase_06 AC 332 ms
5,880 KB
testcase_07 AC 10 ms
5,376 KB
testcase_08 AC 58 ms
5,376 KB
testcase_09 AC 97 ms
5,508 KB
testcase_10 AC 277 ms
5,376 KB
testcase_11 AC 211 ms
5,376 KB
testcase_12 AC 8 ms
5,376 KB
testcase_13 AC 278 ms
5,376 KB
testcase_14 AC 319 ms
5,376 KB
testcase_15 AC 271 ms
5,860 KB
testcase_16 AC 318 ms
5,376 KB
testcase_17 AC 151 ms
5,376 KB
testcase_18 AC 339 ms
5,376 KB
testcase_19 AC 73 ms
5,376 KB
testcase_20 AC 33 ms
5,376 KB
testcase_21 AC 155 ms
5,408 KB
testcase_22 AC 274 ms
5,692 KB
testcase_23 AC 487 ms
5,872 KB
testcase_24 AC 512 ms
5,876 KB
testcase_25 AC 484 ms
5,872 KB
testcase_26 AC 464 ms
5,876 KB
testcase_27 AC 512 ms
5,864 KB
testcase_28 AC 460 ms
5,872 KB
testcase_29 AC 486 ms
5,748 KB
testcase_30 AC 490 ms
5,872 KB
testcase_31 AC 470 ms
5,740 KB
testcase_32 AC 485 ms
5,880 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 3 ms
5,376 KB
testcase_37 AC 3 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<iostream>
#include<vector>
#include<algorithm>
#include<cstring>
#include<cassert>
#include<cmath>
#include<ctime>
#include<iomanip>
#include<numeric>
#include<stack>
#include<queue>
#include<map>
#include<unordered_map>
#include<set>
#include<unordered_set>
#include<bitset>
#include<random>
using namespace std;
int N,A,B,X,Y,H[1 << 17];
void solve()
{
	cin >> N >> A >> B >> X >> Y;
	for(int i = 0;i < N;i++) cin >> H[i];
	int ng = -1,ok = (int)1e9;
	while(ok-ng > 1)
	{
		int mid = (ok+ng)/2;
		vector<int> h(N);
		priority_queue<pair<int,int>> Q;
		for(int i = 0;i < N;i++) h[i] = H[i]-mid,Q.push(make_pair(h[i],i));
		for(int i = 0;i < A;i++)
		{
			int id = Q.top().second;
			Q.pop();
			h[id] -= X;
			Q.push(make_pair(h[id],id));
		}
		long long S = 0;
		for(int i = 0;i < N;i++) S += max(0,h[i]);
		if(S <= (long long)Y*B) ok = mid;
		else ng = mid;
	}
	cout << ok << endl;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int tt = 1;
	//cin >> tt;
	while(tt--) solve();
}
0