結果

問題 No.1861 Required Number
ユーザー 👑 rin204rin204
提出日時 2023-04-21 23:26:04
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 265 ms / 2,500 ms
コード長 722 bytes
コンパイル時間 2,959 ms
コンパイル使用メモリ 250,388 KB
実行使用メモリ 247,504 KB
最終ジャッジ日時 2024-11-06 16:48:46
合計ジャッジ時間 9,439 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 243 ms
247,460 KB
testcase_04 AC 223 ms
247,504 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 7 ms
7,424 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 3 ms
6,816 KB
testcase_13 AC 4 ms
6,816 KB
testcase_14 AC 3 ms
6,820 KB
testcase_15 AC 5 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 3 ms
6,820 KB
testcase_19 AC 5 ms
6,816 KB
testcase_20 AC 4 ms
6,816 KB
testcase_21 AC 4 ms
6,816 KB
testcase_22 AC 5 ms
6,820 KB
testcase_23 AC 3 ms
6,816 KB
testcase_24 AC 102 ms
112,344 KB
testcase_25 AC 252 ms
232,304 KB
testcase_26 AC 118 ms
136,804 KB
testcase_27 AC 233 ms
210,604 KB
testcase_28 AC 165 ms
172,572 KB
testcase_29 AC 235 ms
225,400 KB
testcase_30 AC 247 ms
234,508 KB
testcase_31 AC 236 ms
226,144 KB
testcase_32 AC 239 ms
227,728 KB
testcase_33 AC 238 ms
226,500 KB
testcase_34 AC 237 ms
224,800 KB
testcase_35 AC 257 ms
244,124 KB
testcase_36 AC 237 ms
226,664 KB
testcase_37 AC 259 ms
243,872 KB
testcase_38 AC 234 ms
224,340 KB
testcase_39 AC 233 ms
223,652 KB
testcase_40 AC 264 ms
247,212 KB
testcase_41 AC 249 ms
233,252 KB
testcase_42 AC 265 ms
247,172 KB
testcase_43 AC 255 ms
236,652 KB
testcase_44 AC 2 ms
6,816 KB
04_evil_1.txt WA -
04_evil_2.txt WA -
04_evil_3.txt WA -
04_evil_4.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(void){
    int n, k;
    cin >> n >> k;
    if(n > 10000 || k > 1000) return 0;
    vector<int> A(n);
    for(int i = 0; i < n; i++) cin >> A[i];
    vector<bitset<100010>> dp(n + 1);
    dp[0][0] = 1;
    for(int i = 0; i < n; i++){
        dp[i + 1] = dp[i];
        dp[i + 1] |= dp[i] << A[i];
    }
    if(!dp[n][k]){
        cout << "-1\n";
        return 0;
    }
    vector<bitset<100010>> dp2(n + 1);
    dp2[n][k] = 1;
    for(int i = n - 1; i >= 0; i--){
        dp2[i] = dp2[i + 1];
        dp2[i] |= dp2[i + 1] >> A[i];
    }
    int ans = 0;
    for(int i = 0; i < n; i++){
        if((dp[i] & dp2[i + 1]).none()) ans++;
    }
    cout << ans << "\n";
}
0