結果

問題 No.1861 Required Number
ユーザー ruthenruthen
提出日時 2022-03-04 22:58:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,534 bytes
コンパイル時間 1,899 ms
コンパイル使用メモリ 178,968 KB
実行使用メモリ 121,728 KB
最終ジャッジ日時 2024-07-18 23:10:11
合計ジャッジ時間 9,169 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 113 ms
121,600 KB
testcase_04 AC 112 ms
121,728 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,948 KB
testcase_11 WA -
testcase_12 AC 1 ms
6,940 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 3 ms
6,940 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 46 ms
42,880 KB
testcase_25 AC 115 ms
104,832 KB
testcase_26 AC 19 ms
19,968 KB
testcase_27 AC 39 ms
39,168 KB
testcase_28 AC 46 ms
44,928 KB
testcase_29 AC 29 ms
26,880 KB
testcase_30 AC 9 ms
8,320 KB
testcase_31 AC 118 ms
107,008 KB
testcase_32 AC 12 ms
11,648 KB
testcase_33 AC 81 ms
73,728 KB
testcase_34 AC 94 ms
86,784 KB
testcase_35 AC 95 ms
88,064 KB
testcase_36 AC 30 ms
28,288 KB
testcase_37 AC 46 ms
43,136 KB
testcase_38 AC 97 ms
89,600 KB
testcase_39 AC 54 ms
50,432 KB
testcase_40 AC 118 ms
106,496 KB
testcase_41 AC 113 ms
100,480 KB
testcase_42 AC 95 ms
81,792 KB
testcase_43 AC 48 ms
44,800 KB
testcase_44 AC 2 ms
6,940 KB
04_evil_1.txt MLE -
04_evil_2.txt MLE -
04_evil_3.txt MLE -
04_evil_4.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#ifdef _RUTHEN
#include "debug.hpp"
#else
#define show(...) true
#endif

using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); i++)
template <class T> using V = vector<T>;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    ll N, K;
    cin >> N >> K;
    V<ll> A(N);
    rep(i, N) cin >> A[i];
    V<V<int>> dp1(N + 1, V<int>(K + 1, 0)), dp2(N + 1, V<int>(K + 1, -1));
    dp1[0][0] = 1;
    rep(i, N) {
        for (int k = 0; k <= K; k++) {
            if (dp1[i][k] == 0) continue;
            dp1[i + 1][k] = 1;
            dp2[i + 1][k] = k;
            if (k + A[i] <= K) {
                dp1[i + 1][k + A[i]] = 1;
                dp2[i + 1][k + A[i]] = k;
            }
        }
    }
    show(dp1, dp2);
    if (dp1[N][K] == 0) {
        cout << -1 << '\n';
        return 0;
    }
    set<int> S;
    int k0 = K;
    for (int i = N; i > 0; i--) {
        if (dp2[i][k0] != k0) {
            // add
            S.insert(i - 1);
            k0 = dp2[i][k0];
        }
    }
    V<V<int>> dp3(N + 1, V<int>(K + 1, 0));
    dp3[0][0] = 1;
    rep(i, N) {
        for (int k = 0; k <= K; k++) {
            if (dp3[i][k] == 0) continue;
            dp3[i + 1][k] = 1;
            if (k + A[i] <= K && S.count(i) == 0) {
                dp3[i + 1][k + A[i]] = 1;
            }
        }
    }
    int ans = 0;
    for (auto &s : S) {
        if (dp3[N][A[s]] == 0) {
            ans++;
        }
    }
    show(S);
    cout << ans << '\n';
    return 0;
}
0