結果

問題 No.5 数字のブロック
ユーザー ioryyyyzioryyyyz
提出日時 2015-07-24 06:38:33
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 4,820 ms / 5,000 ms
コード長 752 bytes
コンパイル時間 1,423 ms
コンパイル使用メモリ 157,544 KB
実行使用メモリ 394,624 KB
最終ジャッジ日時 2024-07-08 12:49:27
合計ジャッジ時間 27,583 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1,922 ms
212,480 KB
testcase_04 AC 72 ms
6,400 KB
testcase_05 AC 2,491 ms
254,336 KB
testcase_06 AC 752 ms
97,408 KB
testcase_07 AC 1,240 ms
149,248 KB
testcase_08 AC 803 ms
86,784 KB
testcase_09 AC 186 ms
41,216 KB
testcase_10 AC 1,234 ms
129,024 KB
testcase_11 AC 324 ms
39,808 KB
testcase_12 AC 2,364 ms
209,664 KB
testcase_13 AC 1,182 ms
131,968 KB
testcase_14 AC 55 ms
36,608 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 2,199 ms
220,160 KB
testcase_17 AC 3,489 ms
332,672 KB
testcase_18 AC 1,815 ms
185,472 KB
testcase_19 AC 4,820 ms
394,624 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 6 ms
5,760 KB
testcase_25 AC 130 ms
47,104 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 67 ms
6,272 KB
testcase_30 AC 94 ms
17,408 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i,n) for(int i=0;i<n;i++)
#define reps(i,m,n) for(int i=m;i<n;i++)

typedef long long ll;
typedef unsigned long long ull;
typedef unsigned int uint;
typedef vector<int> vec;
typedef vector<vec> mat;
static const double EPS = 1e-9;
static const double PI = acos(-1.0);
const int INF = 1e9;
const int mod = 1e9 + 7;

const int MAX = 10010;
int dp[MAX][MAX] = {0};
int W[MAX];

int L, N;

int rec(int l, int n){
    if(l > L || n > N) return -1;
    if(dp[l][n] > 0){
        return dp[l][n];
    }
    int& res = dp[l][n];
    res = max(rec(l, n+1), 1+rec(l+W[n], n+1));
    return res;
}

int main(){
    cin >> L >> N;
    rep(i, N) cin >> W[i];
    cout << rec(0, 0) << endl;
    return 0;
}
0