結果

問題 No.617 Nafmo、買い出しに行く
ユーザー 👑 CleyLCleyL
提出日時 2020-01-22 19:59:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 70,004 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-07-08 13:45:14
合計ジャッジ時間 1,484 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 8 ms
5,632 KB
testcase_03 AC 17 ms
8,704 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 28 ms
10,368 KB
testcase_06 AC 47 ms
5,376 KB
testcase_07 AC 49 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 40 ms
11,392 KB
testcase_11 AC 48 ms
11,392 KB
testcase_12 AC 30 ms
13,440 KB
testcase_13 AC 20 ms
10,880 KB
testcase_14 AC 25 ms
11,776 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 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
bool dp[20][2000001];
int main(){
    int n,k;cin>>n>>k;
    vector<int> a(n);
    for(int i = 0; n > i; i++){
        cin>>a[i];
    }
    dp[0][0] = true;
    dp[0][a[0]] = true;
    for(int i = 1; n > i; i++){
        for(int j = 0; k >= j; j++){
            if(dp[i-1][j]){
                dp[i][j] = true;
                dp[i][j+a[i]]=true;
            }
        }
    }
    for(int i = k; 0 <= i; i--){
        if(dp[n-1][i]){
            cout << i << endl;
            return 0;
        }
    }
}
0