結果

問題 No.27 板の準備
ユーザー furafura
提出日時 2020-01-08 01:01:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 554 bytes
コンパイル時間 1,427 ms
コンパイル使用メモリ 165,196 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-14 23:56:38
合計ジャッジ時間 2,272 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

const int INF=1<<20;

int main(){
	int v[4];
	rep(i,4) scanf("%d",&v[i]);

	int ans=INF;
	for(int a=1;a<=30;a++) for(int b=a;b<=30;b++) for(int c=b;c<=30;c++) {
		int res=0;
		rep(i,4){
			int dp[31];
			rep(w,v[i]+1) dp[w]=(w==0?0:INF);
			rep(w,v[i]+1-a) dp[w+a]=min(dp[w+a],dp[w]+1);
			rep(w,v[i]+1-b) dp[w+b]=min(dp[w+b],dp[w]+1);
			rep(w,v[i]+1-c) dp[w+c]=min(dp[w+c],dp[w]+1);
			res+=dp[v[i]];
		}
		ans=min(ans,res);
	}
	printf("%d\n",ans);

	return 0;
}
0