結果

問題 No.1861 Required Number
ユーザー ktr216ktr216
提出日時 2022-03-04 22:28:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 2,500 ms
コード長 1,881 bytes
コンパイル時間 1,788 ms
コンパイル使用メモリ 174,848 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 23:05:54
合計ジャッジ時間 8,591 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 132 ms
6,940 KB
testcase_04 AC 133 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 38 ms
6,944 KB
testcase_25 AC 90 ms
6,940 KB
testcase_26 AC 19 ms
6,944 KB
testcase_27 AC 36 ms
6,944 KB
testcase_28 AC 41 ms
6,940 KB
testcase_29 AC 25 ms
6,940 KB
testcase_30 AC 10 ms
6,940 KB
testcase_31 AC 99 ms
6,940 KB
testcase_32 AC 11 ms
6,940 KB
testcase_33 AC 63 ms
6,944 KB
testcase_34 AC 74 ms
6,940 KB
testcase_35 AC 77 ms
6,940 KB
testcase_36 AC 26 ms
6,940 KB
testcase_37 AC 39 ms
6,944 KB
testcase_38 AC 79 ms
6,940 KB
testcase_39 AC 48 ms
6,944 KB
testcase_40 AC 101 ms
6,940 KB
testcase_41 AC 92 ms
6,940 KB
testcase_42 AC 77 ms
6,940 KB
testcase_43 AC 44 ms
6,944 KB
testcase_44 AC 2 ms
6,944 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;

using ll = long long;
using VI = vector<int>;
using P = pair<int, int>;

#define REP(i, n) for (int i = 0; i < (int)(n); i++)
#define FOR(i, a, b) for (ll i = a; i < (ll)(b); i++)
#define ALL(a) (a).begin(),(a).end()

constexpr int INF = 1001001001;
constexpr ll LINF = 1001001001001001001ll;
constexpr int DX[] = {1, 0, -1, 0};
constexpr int DY[] = {0, 1, 0, -1};

template< typename T1, typename T2>
inline bool chmax(T1 &a, T2 b) {return a < b && (a = b, true); }
template< typename T1, typename T2>
inline bool chmin(T1 &a, T2 b) {return a > b && (a = b, true); }

const ll MOD = 1000000007;

int main() {
    int N, K;
    cin >> N >> K;
    VI A(N);
    REP(i, N) cin >> A[i];
    vector<vector<bool>> L(N + 1, vector<bool>(K + 1, false));
    vector<vector<bool>> R(N + 1, vector<bool>(K + 1, false));
    L[0][0] = true;
    R[N][0] = true;
    REP(i, N) {
        REP(j, K + 1) {
            L[i + 1][j] = L[i + 1][j] | L[i][j];
            if (j + A[i] <= K) L[i + 1][j + A[i]] = L[i + 1][j + A[i]] | L[i][j];
            R[N - i - 1][j] = R[N - i - 1][j] | R[N - i][j];
            if (j + A[N - 1 - i] <= K) R[N - i - 1][j + A[N - 1 - i]] = R[N - i - 1][j + A[N - 1 - i]] | R[N - i][j];
        }
    }
    if (!L[N][K]) {
        cout << -1 << endl;
        return 0;
    }
    int ans = 0;
    REP(i, N) {
        bool f = true, g = false;
        REP(j, K + 1) {
            if (L[i][j]) {
                if (R[i + 1][K - j]) f = false;
                if (j + A[i] <= K && R[i + 1][K - j - A[i]]) g = true;
            }
        }
        if (f && g) {
           // cout << i << endl;
            ans++;
        }
    }
    cout << ans << endl;
    /*
    REP(i, N + 1) {
        REP(j, K + 1) cout << L[i][j];
        cout << endl;
        REP(j, K + 1) cout << R[i][j];
        cout << endl << endl;
    }
    */
}
0