結果

問題 No.733 分身並列コーディング
ユーザー chocopuuchocopuu
提出日時 2019-03-02 10:37:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 1,500 ms
コード長 1,167 bytes
コンパイル時間 1,503 ms
コンパイル使用メモリ 167,236 KB
実行使用メモリ 25,280 KB
最終ジャッジ日時 2024-06-23 12:16:47
合計ジャッジ時間 3,894 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 46 ms
25,280 KB
testcase_04 AC 48 ms
23,936 KB
testcase_05 AC 54 ms
23,936 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 52 ms
23,808 KB
testcase_08 AC 51 ms
23,936 KB
testcase_09 AC 23 ms
13,440 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 11 ms
8,320 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 23 ms
13,568 KB
testcase_20 AC 23 ms
13,696 KB
testcase_21 AC 11 ms
8,448 KB
testcase_22 AC 50 ms
23,680 KB
testcase_23 AC 12 ms
8,320 KB
testcase_24 AC 12 ms
8,448 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 52 ms
23,808 KB
testcase_29 AC 53 ms
23,936 KB
testcase_30 AC 50 ms
23,808 KB
testcase_31 AC 51 ms
23,680 KB
testcase_32 AC 7 ms
6,016 KB
testcase_33 AC 6 ms
5,760 KB
testcase_34 AC 6 ms
5,888 KB
testcase_35 AC 6 ms
5,760 KB
testcase_36 AC 7 ms
5,888 KB
testcase_37 AC 6 ms
5,888 KB
testcase_38 AC 51 ms
23,936 KB
testcase_39 AC 51 ms
23,808 KB
testcase_40 AC 52 ms
23,808 KB
testcase_41 AC 7 ms
6,016 KB
testcase_42 AC 7 ms
5,888 KB
testcase_43 AC 7 ms
5,888 KB
testcase_44 AC 52 ms
23,808 KB
testcase_45 AC 52 ms
23,680 KB
testcase_46 AC 51 ms
23,808 KB
testcase_47 AC 51 ms
23,808 KB
testcase_48 AC 51 ms
23,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pb push_back
#define fi first
#define se second
#define rep(i,s,n) for(int i = s;i<n;i++)
#define rrep(i,s,n) for(int i = (n)-1;i>=(s);i--)
#define all(v) (v).begin(),(v).end()
#define chmin(a,b) a=min((a),(b))
#define chmax(a,b) a=max((a),(b))
#define endl '\n'
#define IOS() ios_base::sync_with_stdio(0);cin.tie(0)
typedef long long ll;
typedef pair<int,int>pint;
typedef vector<int>vint;
const ll MOD=1000000007,INF=1e18;

int T,N;
int t[100010];
int dp[1ll<<20][20];


signed main() {
    IOS();
    cin>>T>>N;
    rep(i,0,N)cin>>t[i];
    rep(i,1,(1ll<<N))rep(j,0,N)dp[i][j]=INF;
    rep(i,1,(1ll<<N)){
        rep(j,0,N){
            if(i&(1ll<<j)){
                rep(k,0,N+1){
                    chmin(dp[i][k],dp[i^(1ll<<j)][k]+t[j]);
                    if(dp[i][k]<=T){
                        dp[i][k+1]=0;
                    }
                }
            }
        }
    }
    rep(i,1,N+1){
        if(!dp[(1ll<<N)-1][i]){
            cout<<i<<endl;
            return 0;
        }
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    return 0;
}
0