結果
問題 | No.27 板の準備 |
ユーザー | momoyuu |
提出日時 | 2024-07-28 00:47:45 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 907 bytes |
コンパイル時間 | 1,312 ms |
コンパイル使用メモリ | 96,092 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-28 00:47:48 |
合計ジャッジ時間 | 2,533 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; using ll = long long; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); vector<int> use(4); for(int i = 0;i<4;i++) cin>>use[i]; int mx = 0; int ans = 1e8; for(int i = 0;i<4;i++) mx = max(mx,use[i]); for(int i = 1;i<=mx;i++){ for(int j = i ;j<=mx;j++){ for(int k = j;k<=mx;k++){ vector<int> dp(mx+1,1e8); dp[0] = 0; for(int l = 1;l<=mx;l++){ if(l-i>=0) dp[l] = min(dp[l],dp[l-i]+1); if(l-j>=0) dp[l] = min(dp[l],dp[l-j]+1); if(l-k>=0) dp[l] = min(dp[l],dp[l-k]+1); } int cnt = 0; for(int l = 0;l<4;l++) cnt += dp[use[l]]; ans = min(ans,cnt); } } } cout<<ans<<endl; }