結果

問題 No.1071 ベホマラー
ユーザー hotaka0213hotaka0213
提出日時 2020-06-06 09:50:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 588 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 63,872 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-02 10:02:11
合計ジャッジ時間 4,327 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
int main(){
	unsigned N,K,X,Y;
	std::cin>>N>>K>>X>>Y;
	int *A=new int[N];
	int *NowHp=new int[N];
	for (int i=0;i<N;i++){
		std::cin>>A[i];
		NowHp[i]=1;
	}
	int finish=0,UsedMp=0;
	while(finish==0){
		int NeedHeal=0;
		for (int i=0;i<N;i++){
			if(NowHp[i]<A[i]){
				NeedHeal++;
			}
		}
		if(NeedHeal==0){
			finish++;
		}else if(NeedHeal*X<Y){
			for(int i=0;i<N;i++){
				while(NowHp[i]<A[i]){
					NowHp[i]+=K;
					UsedMp+=X;
				}
			}
			finish++;
		}else {
			for(int i=0;i<N;i++){
				NowHp[i]+=K;
			}
			UsedMp+=Y;
		}
	}
	std::cout<<UsedMp;
	return 0;
}
0