結果

問題 No.1861 Required Number
ユーザー tnakao0123tnakao0123
提出日時 2022-03-04 23:22:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 32 ms / 2,500 ms
コード長 1,131 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 42,948 KB
実行使用メモリ 22,676 KB
最終ジャッジ日時 2024-07-18 23:18:23
合計ジャッジ時間 2,383 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 32 ms
22,636 KB
testcase_04 AC 32 ms
22,676 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 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 7 ms
14,428 KB
testcase_25 AC 13 ms
21,912 KB
testcase_26 AC 5 ms
16,608 KB
testcase_27 AC 8 ms
21,988 KB
testcase_28 AC 7 ms
21,212 KB
testcase_29 AC 6 ms
21,868 KB
testcase_30 AC 6 ms
22,184 KB
testcase_31 AC 12 ms
21,880 KB
testcase_32 AC 7 ms
21,756 KB
testcase_33 AC 10 ms
21,836 KB
testcase_34 AC 11 ms
21,780 KB
testcase_35 AC 11 ms
22,600 KB
testcase_36 AC 8 ms
21,812 KB
testcase_37 AC 9 ms
22,516 KB
testcase_38 AC 11 ms
21,740 KB
testcase_39 AC 9 ms
21,672 KB
testcase_40 AC 14 ms
22,668 KB
testcase_41 AC 13 ms
22,044 KB
testcase_42 AC 10 ms
22,508 KB
testcase_43 AC 9 ms
22,168 KB
testcase_44 AC 2 ms
6,940 KB
04_evil_1.txt RE -
04_evil_2.txt RE -
04_evil_3.txt RE -
04_evil_4.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 1861.cc:  No.1861 Required Number - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 10000;
const int MAX_K = 1000;

/* typedef */

/* global variables */

int as[MAX_N];
bool dp0[MAX_N + 1][MAX_K + 1], dp1[MAX_N + 1][MAX_K + 1];

/* subroutines */

/* main */

int main() {
  int n, k;
  scanf("%d%d", &n, &k);
  for (int i = 0; i < n; i++) scanf("%d", as + i);

  dp0[0][0] = true;
  for (int i = 0; i < n; i++) {
    copy(dp0[i], dp0[i] + k + 1, dp0[i + 1]);
    for (int j = k - as[i]; j >= 0; j--)
      if (dp0[i][j]) dp0[i + 1][j + as[i]] = true;
  }

  if (! dp0[n][k]) { puts("-1"); return 0; }

  dp1[n][0] = true;
  for (int i = n - 1; i >= 0; i--) {
    copy(dp1[i + 1], dp1[i + 1] + k + 1, dp1[i]);
    for (int j = k - as[i]; j >= 0; j--)
      if (dp1[i + 1][j]) dp1[i][j + as[i]] = true;
  }

  int cnt = 0;
  for (int i = 0; i < n; i++) {
    bool found = false;
    for (int j = 0; ! found && j <= k; j++)
      found = (dp0[i][j] && dp1[i + 1][k - j]);

    if (! found) cnt++;
  }

  printf("%d\n", cnt);
  return 0;
}
0