結果

問題 No.1861 Required Number
ユーザー sushitorunasushitoruna
提出日時 2021-12-27 01:27:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 45 ms / 2,500 ms
コード長 985 bytes
コンパイル時間 1,450 ms
コンパイル使用メモリ 169,316 KB
実行使用メモリ 23,208 KB
最終ジャッジ日時 2024-07-18 22:13:40
合計ジャッジ時間 4,136 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 45 ms
23,092 KB
testcase_04 AC 43 ms
23,208 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,948 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 16 ms
10,032 KB
testcase_25 AC 36 ms
20,312 KB
testcase_26 AC 9 ms
6,944 KB
testcase_27 AC 14 ms
9,332 KB
testcase_28 AC 15 ms
10,352 KB
testcase_29 AC 10 ms
7,276 KB
testcase_30 AC 5 ms
6,940 KB
testcase_31 AC 37 ms
20,468 KB
testcase_32 AC 6 ms
6,940 KB
testcase_33 AC 25 ms
15,032 KB
testcase_34 AC 28 ms
17,196 KB
testcase_35 AC 29 ms
17,424 KB
testcase_36 AC 11 ms
7,536 KB
testcase_37 AC 16 ms
9,964 KB
testcase_38 AC 30 ms
17,724 KB
testcase_39 AC 19 ms
11,316 KB
testcase_40 AC 37 ms
20,648 KB
testcase_41 AC 33 ms
19,592 KB
testcase_42 AC 30 ms
16,460 KB
testcase_43 AC 18 ms
10,200 KB
testcase_44 AC 2 ms
6,944 KB
04_evil_1.txt RE -
04_evil_2.txt RE -
04_evil_3.txt RE -
04_evil_4.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main()
{
  //入力
  int N,K;cin>>N>>K;
  vector<int>A(N+1);
  for(int i=1;i<=N;i++)cin>>A[i];
  
  //dpの前処理
  bool dpl[N+2][K+1],dpr[N+2][K+1];
  for(int i=0;i<N+2;i++)for(int j=0;j<=K;j++)dpl[i][j]=false,dpr[i][j]=false;
  //dpl[i][j]:=A_1~A_iから選んで、和をjにできるか
  //dpr[i][j]:=A_i~A_Nから選んで、和をjにできるか
  dpl[0][0]=true;dpr[N+1][0]=true;
  for(int i=1;i<=N;i++)for(int j=0;j<=K;j++)
  {
    dpl[i][j]=dpl[i-1][j];
    if(j<A[i])continue;
    if(dpl[i-1][j-A[i]])dpl[i][j]=true;
  }
  for(int i=N;i>=1;i--)for(int j=0;j<=K;j++)
  {
    dpr[i][j]=dpr[i+1][j];
    if(j<A[i])continue;
    if(dpr[i+1][j-A[i]])dpr[i][j]=true;
  }
  
  //判定
  if(!dpl[N][K]){cout<<-1<<endl;return 0;}

  int ans=0;
  for(int i=1;i<=N;i++)
  {
    bool check=true;
    for(int j=0;j<=K;j++)
      if(dpl[i-1][j]&&dpr[i+1][K-j])check=false;
    if(check)ans++;
  }
  
  //出力
  cout<<ans<<endl;
}
0