結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー kotatsugamekotatsugame
提出日時 2021-11-12 21:26:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 273 ms / 3,000 ms
コード長 513 bytes
コンパイル時間 642 ms
コンパイル使用メモリ 69,460 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-04 04:51:23
合計ジャッジ時間 6,997 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 237 ms
6,940 KB
testcase_05 AC 273 ms
6,944 KB
testcase_06 AC 91 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 138 ms
6,940 KB
testcase_09 AC 187 ms
6,940 KB
testcase_10 AC 83 ms
6,940 KB
testcase_11 AC 71 ms
6,940 KB
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 159 ms
6,940 KB
testcase_14 AC 190 ms
6,944 KB
testcase_15 AC 248 ms
6,940 KB
testcase_16 AC 74 ms
6,944 KB
testcase_17 AC 124 ms
6,940 KB
testcase_18 AC 107 ms
6,940 KB
testcase_19 AC 65 ms
6,940 KB
testcase_20 AC 54 ms
6,940 KB
testcase_21 AC 155 ms
6,940 KB
testcase_22 AC 225 ms
6,940 KB
testcase_23 AC 256 ms
6,940 KB
testcase_24 AC 271 ms
6,940 KB
testcase_25 AC 233 ms
6,944 KB
testcase_26 AC 266 ms
6,940 KB
testcase_27 AC 247 ms
6,940 KB
testcase_28 AC 259 ms
6,944 KB
testcase_29 AC 257 ms
6,940 KB
testcase_30 AC 250 ms
6,940 KB
testcase_31 AC 265 ms
6,944 KB
testcase_32 AC 258 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 1 ms
6,944 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 3 ms
6,944 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:22:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   22 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
int N,A,B,X,Y;
int Hi[1<<17];
int H[1<<17];
bool check(int K)
{
	int a=A;
	long all=(long)Y*B;
	for(int i=0;i<N;i++)
	{
		H[i]=Hi[i]-K;
		if(H[i]<0)H[i]=0;
		while(a>0&&H[i]>=X)H[i]-=X,a--;
		all-=H[i];
	}
	sort(H,H+N);
	for(int i=0;i<a&&i<N;i++)all+=H[N-i-1];
	return all>=0;
}
main()
{
	cin>>N>>A>>B>>X>>Y;
	for(int i=0;i<N;i++)cin>>Hi[i];
	int L=-1,R=1e9;
	while(R-L>1)
	{
		int mid=(L+R)/2;
		if(check(mid))R=mid;
		else L=mid;
	}
	cout<<R<<endl;
}
0