結果

問題 No.1861 Required Number
ユーザー vjudge1vjudge1
提出日時 2024-10-02 10:05:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 874 bytes
コンパイル時間 1,984 ms
コンパイル使用メモリ 204,140 KB
実行使用メモリ 14,016 KB
最終ジャッジ日時 2024-10-02 10:05:49
合計ジャッジ時間 18,013 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
11,008 KB
testcase_02 WA -
testcase_03 AC 17 ms
11,136 KB
testcase_04 WA -
testcase_05 AC 3 ms
11,136 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
5,504 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
5,504 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 3 ms
5,376 KB
04_evil_1.txt TLE -
04_evil_2.txt TLE -
04_evil_3.txt TLE -
04_evil_4.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define ll long long
#define f first
#define s second
#define sz(a) (int)(a.size())
#define all(a) a.begin(), a.end()
#define uniq(a) sort(all(a)); a.resize(unique(all(a)) - a.begin());

typedef pair <int, int> ii;
typedef tuple <int, int, int> Tp;

const int N = 5e5 + 5;

int n, k, a[N], dp[N];

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);

    // freopen("a.inp", "r", stdin);
    // freopen("a.out", "w", stdout);

    cin >> n >> k;
    for (int i = 1; i <= n; i++) {
        cin >> a[i];
    }
    sort(a + 1, a + n + 1);

    memset(dp, 0x3f, sizeof(dp));

    dp[0] = 0;
    for (int j = 1; j <= n; j++) {
        for (int i = k; i >= a[j]; i--) {
            dp[i] = min(dp[i], dp[i - a[j]] + 1);
        }
    }

    cout << (dp[k] != dp[k + 1] ? dp[k] : -1) << '\n';

    return 0;
}
0