結果

問題 No.107 モンスター
ユーザー autumn-eelautumn-eel
提出日時 2017-12-19 22:37:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 1,591 ms
コンパイル使用メモリ 165,120 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-08-22 07:07:25
合計ジャッジ時間 3,610 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n)for(int i=0;i<(n);i++)
using namespace std;
typedef pair<int,int>P;

int dp[1<<15];
int m[15];

int main(){
	int n;scanf("%d",&n);
	rep(i,n)scanf("%d",&m[i]);
	memset(dp,0x3f,sizeof(dp));
	dp[0]=0;
	rep(i,1<<n){
		int cnt=0;
		rep(j,n){
			if(i>>j&1)(cnt+=m[j])%=1000;
		}
		rep(j,n){
			if(!(i>>j&1))dp[i|1<<j]=min(dp[i|1<<j],dp[i]+max(0,m[j]-cnt));
		}
	}
	cout<<dp[(1<<n)-1]<<endl;
}
0