結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー MasKoaTSMasKoaTS
提出日時 2021-11-12 23:09:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,312 ms / 3,000 ms
コード長 1,484 bytes
コンパイル時間 4,474 ms
コンパイル使用メモリ 265,204 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-05-04 10:51:59
合計ジャッジ時間 30,285 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 26 ms
5,376 KB
testcase_04 AC 1,224 ms
8,704 KB
testcase_05 AC 1,312 ms
8,704 KB
testcase_06 AC 1,137 ms
8,704 KB
testcase_07 AC 31 ms
5,376 KB
testcase_08 AC 433 ms
6,272 KB
testcase_09 AC 690 ms
8,192 KB
testcase_10 AC 547 ms
5,504 KB
testcase_11 AC 385 ms
5,376 KB
testcase_12 AC 37 ms
5,376 KB
testcase_13 AC 716 ms
6,784 KB
testcase_14 AC 856 ms
7,168 KB
testcase_15 AC 1,013 ms
8,704 KB
testcase_16 AC 536 ms
5,376 KB
testcase_17 AC 473 ms
5,888 KB
testcase_18 AC 663 ms
6,016 KB
testcase_19 AC 383 ms
5,888 KB
testcase_20 AC 140 ms
5,376 KB
testcase_21 AC 758 ms
7,808 KB
testcase_22 AC 964 ms
8,064 KB
testcase_23 AC 1,271 ms
8,832 KB
testcase_24 AC 1,300 ms
8,704 KB
testcase_25 AC 1,264 ms
8,832 KB
testcase_26 AC 1,233 ms
8,704 KB
testcase_27 AC 1,294 ms
8,576 KB
testcase_28 AC 1,244 ms
8,704 KB
testcase_29 AC 1,296 ms
8,576 KB
testcase_30 AC 1,285 ms
8,704 KB
testcase_31 AC 1,229 ms
8,704 KB
testcase_32 AC 1,282 ms
8,704 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 3 ms
5,376 KB
testcase_39 AC 6 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <math.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, l, n) for (int i = (l); i < (n); i++)
#define max(p, q) ((p) > (q) ? (p) : (q))
#define min(p, q) ((p) < (q) ? (p) : (q))
#define all(x) x.begin(), x.end()
#define fi first
#define se second
#define lb lower_bound;
#define ub upper_bound;
//#define lb(A, x) (ll)(lower_bound(all(A), x) - A.begin())
//#define ub(A, x) (ll)(upper_bound(all(A), x) - A.begin())
using ll = long long;
using P = pair<int, int>;
template <class T>
using V = vector<T>;
template <class T>
using VV = V<V<T> >;
template <class T>
const ll INF = 1000000000000000001;
const int inf = 1001001001;
const ll mod = 1000000007;
const ll MOD = 998244353;

bool func(V<ll>&h,ll n,ll a,ll b,ll x,ll y,ll k) {
	multiset<ll> st{};
	rep(i, 0, n) {
		st.insert(-h[i] + k);
	}
	
	rep(i, 0, a) {
		auto it = st.begin();
		ll t = *it + x;
		//cout << *it << endl;
		st.erase(it);
		st.insert(t);
	}
	ll s = 0;
	for (auto it = st.begin(); it != st.end(); it++) {
		s += max(0, -(*it));
	}
	if (s <= y * b) {
		return true;
	}
	return false;
}

int main(void) {
	ll n, a, b, x, y;	cin >> n >> a >> b >> x >> y;
	ll mh = 0;
	V<ll> h(n);
	rep(i, 0, n) {
		cin >> h[i];
		mh = max(mh, h[i]);
	}

	ll ok = mh;
	ll ng = -1;
	while (ok - ng > 1) {
		ll k = (ok + ng) / 2;
		//cout << k << endl;
		if (func(h, n, a, b, x, y, k)) {
			ok = k;
		}
		else {
			ng = k;
		}
	}

	cout << ok << endl;
	return 0;
}
0