結果

問題 No.27 板の準備
ユーザー kotatsugamekotatsugame
提出日時 2019-10-15 06:48:13
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 474 bytes
コンパイル時間 701 ms
コンパイル使用メモリ 66,536 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-26 03:05:00
合計ジャッジ時間 1,640 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    5 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int X[4];
int dp[31];
main()
{
	for(int i=0;i<4;i++)cin>>X[i];
	long ans=1e9;
	for(int A=1;A<=30;A++)for(int B=A+1;B<=30;B++)for(int C=B+1;C<=30;C++)
	{
		for(int i=1;i<=30;i++)dp[i]=1e9;
		for(int i=1;i<=30;i++)
		{
			if(i>=A)dp[i]=min(dp[i],dp[i-A]+1);
			if(i>=B)dp[i]=min(dp[i],dp[i-B]+1);
			if(i>=C)dp[i]=min(dp[i],dp[i-C]+1);
		}
		long now=0;
		for(int i=0;i<4;i++)now+=dp[X[i]];
		if(ans>now)ans=now;
	}
	cout<<ans<<endl;
}
0