結果

問題 No.27 板の準備
ユーザー ytftytft
提出日時 2021-03-04 10:20:12
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 875 bytes
コンパイル時間 1,553 ms
コンパイル使用メモリ 165,096 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-15 03:50:34
合計ジャッジ時間 2,234 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 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 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 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
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
long long calc(int target,int a,int b,int c){
    long long inf=INT_MAX;
    long long ret=inf;
    if(b==0){
        if(target%c==0){
            return target/c;
        }else{
            return inf;
        }
    }
    for(int i=0;i*c<=target;i++){
        ret=min(ret,calc(target-c*i,0,a,b)+i);
    }
    //cout<<target<<" "<<a<<" "<<b<<" "<<c<<" "<<ret<<endl;
    return ret;
}

int main(){
    vector<int> w(4);
    for(int i=0;i<4;i++){
        cin>>w[i];
    }
    long long temp;
    long long ans=INT_MAX;
    for(int a=1;a<=30;a++){
        for(int b=a+1;b<=30;b++){
            for(int c=b+1;c<=30;c++){
                temp=0;
                for(int i=0;i<4;i++){
                    temp+=calc(w[i],a,b,c);
                }
                ans=min(ans,temp);
            }
        }
    }
    cout<<ans<<endl;
}
0