結果

問題 No.733 分身並列コーディング
ユーザー mnti-qmnti-q
提出日時 2024-09-18 09:43:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 182 ms / 1,500 ms
コード長 1,599 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 202,752 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-18 09:43:38
合計ジャッジ時間 6,536 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 165 ms
6,940 KB
testcase_04 AC 180 ms
6,944 KB
testcase_05 AC 12 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 157 ms
6,940 KB
testcase_08 AC 138 ms
6,940 KB
testcase_09 AC 55 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 21 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 4 ms
6,944 KB
testcase_19 AC 59 ms
6,940 KB
testcase_20 AC 58 ms
6,940 KB
testcase_21 AC 20 ms
6,940 KB
testcase_22 AC 163 ms
6,940 KB
testcase_23 AC 20 ms
6,944 KB
testcase_24 AC 21 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 156 ms
6,940 KB
testcase_29 AC 164 ms
6,940 KB
testcase_30 AC 164 ms
6,940 KB
testcase_31 AC 164 ms
6,940 KB
testcase_32 AC 8 ms
6,944 KB
testcase_33 AC 8 ms
6,944 KB
testcase_34 AC 9 ms
6,944 KB
testcase_35 AC 8 ms
6,940 KB
testcase_36 AC 8 ms
6,940 KB
testcase_37 AC 8 ms
6,944 KB
testcase_38 AC 167 ms
6,944 KB
testcase_39 AC 166 ms
6,940 KB
testcase_40 AC 163 ms
6,940 KB
testcase_41 AC 10 ms
6,940 KB
testcase_42 AC 8 ms
6,944 KB
testcase_43 AC 8 ms
6,940 KB
testcase_44 AC 167 ms
6,944 KB
testcase_45 AC 164 ms
6,940 KB
testcase_46 AC 166 ms
6,944 KB
testcase_47 AC 172 ms
6,940 KB
testcase_48 AC 182 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define rep(i,a,b)for(int i=a;i<b;i++)
#define rrep(i,a,b)for(int i=a;i>b;i--)
#define R(a) rep(i,0,a)
#define RR(a,b) rep(i,0,a)rep(j,0,b)
#define RRR(a,b,c) RR(a,b)rep(k,0,c)
#define el '\n'
#define YN(p) cout << (p?"Yes":"No") << el;
#define SU(p) cout << p << el;
#define PU(p) cout << p.first << ' ' << p.second << el;
#define VU(p) R(p.size())cout << p[i] << (i!=p.size()-1?' ':el);
#define all(x) x.begin(),x.end()
#define rall(x) x.rbegin(),x.rend()
#define Toup(s) transform(all(s),s.begin(),[](char c){return toupper(c);})
#define Tolow(s) transform(all(s),s.begin(),[](char c){return tolower(c);})
#define fix() cout << fixed << setprecision(12);
using ll = long long;
const int inf = 1073041824;
const ll INFL=1LL<<60;
const ll mod= 998244353;
const ll MOD=1000000007;
bool ok=false;
const int fj[4]={0,1,0,-1};//上右下左
const int fi[4]={-1,0,1,0};

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n,m;
    cin >> m >> n;;
    vector<int>a(n);
    R(n)cin >> a[i];
    vector<int>dp(1<<n,inf);
    bitset<20>b;
    R(1<<n){
        if(i==0)continue;
        b=i;
        if(b.count()==1){
            dp[i]=1;
            continue;
        }
        int sum=0;
        ok=true;
        rep(j,0,n){
            if(i&(1<<j))sum+=a[j];
            if(sum>m){
                ok=false;
                break;
            }
        }
        if(ok)dp[i]=1;
        else {
            for(int j=i;j>0;j=(j-1)&i){
                dp[i]=min(dp[i],dp[j]+dp[i^j]);
            }
        }
    }
    SU(dp[(1<<n)-1])
}
0