結果

問題 No.107 モンスター
ユーザー ren0824xemnasren0824xemnas
提出日時 2015-09-23 12:47:57
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 525 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 66,468 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-19 08:47:31
合計ジャッジ時間 3,281 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 WA -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:26: warning: ‘n’ is used uninitialized [-Wuninitialized]
    9 |         vector<int> dp(1 << n);
      |                        ~~^~~~
main.cpp:8:13: note: ‘n’ declared here
    8 |         int n,mon[20];
      |             ^

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<map>
using namespace std;

int main(){
	int n,mon[20];
	vector<int> dp(1 << n);
	cin >> n;
	for(int i=0;i<n;i++) cin >> mon[i];
	dp[0] = 100;
	for(int i=0;i<(1<<n);i++){
		if(dp[i] == 0) continue;
		int hp = 100;
		for(int j=0;j<n;j++){
			if((i&(1<<j)) && mon[j] < 0) hp += 100;
		}
		for(int j=0;j<n;j++){
			if((i&(1<<j))) continue;
			int tmp = min(hp,dp[i]+mon[j]);
			dp[i + (1 << j)] = max(dp[i + (1 << j)],tmp);
		}
	}
	cout << dp[(1<<n)-1] << endl;
}
0