結果

問題 No.1606 Stuffed Animals Keeper
ユーザー umezoumezo
提出日時 2021-07-17 03:03:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 41 ms / 3,000 ms
コード長 978 bytes
コンパイル時間 2,277 ms
コンパイル使用メモリ 206,304 KB
実行使用メモリ 101,656 KB
最終ジャッジ日時 2024-07-06 14:13:12
合計ジャッジ時間 5,702 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
101,504 KB
testcase_01 AC 33 ms
101,508 KB
testcase_02 AC 33 ms
101,484 KB
testcase_03 AC 37 ms
101,504 KB
testcase_04 AC 37 ms
101,568 KB
testcase_05 AC 34 ms
101,572 KB
testcase_06 AC 35 ms
101,464 KB
testcase_07 AC 36 ms
101,608 KB
testcase_08 AC 36 ms
101,496 KB
testcase_09 AC 35 ms
101,512 KB
testcase_10 AC 34 ms
101,460 KB
testcase_11 AC 34 ms
101,356 KB
testcase_12 AC 35 ms
101,476 KB
testcase_13 AC 33 ms
101,656 KB
testcase_14 AC 33 ms
101,376 KB
testcase_15 AC 34 ms
101,568 KB
testcase_16 AC 40 ms
101,540 KB
testcase_17 AC 39 ms
101,528 KB
testcase_18 AC 39 ms
101,596 KB
testcase_19 AC 39 ms
101,560 KB
testcase_20 AC 40 ms
101,508 KB
testcase_21 AC 36 ms
101,512 KB
testcase_22 AC 35 ms
101,496 KB
testcase_23 AC 35 ms
101,516 KB
testcase_24 AC 35 ms
101,564 KB
testcase_25 AC 34 ms
101,552 KB
testcase_26 AC 34 ms
101,484 KB
testcase_27 AC 35 ms
101,656 KB
testcase_28 AC 34 ms
101,392 KB
testcase_29 AC 34 ms
101,532 KB
testcase_30 AC 34 ms
101,484 KB
testcase_31 AC 34 ms
101,484 KB
testcase_32 AC 34 ms
101,504 KB
testcase_33 AC 34 ms
101,488 KB
testcase_34 AC 35 ms
101,584 KB
testcase_35 AC 34 ms
101,504 KB
testcase_36 AC 35 ms
101,504 KB
testcase_37 AC 35 ms
101,496 KB
testcase_38 AC 36 ms
101,516 KB
testcase_39 AC 34 ms
101,460 KB
testcase_40 AC 34 ms
101,564 KB
testcase_41 AC 34 ms
101,516 KB
testcase_42 AC 33 ms
101,500 KB
testcase_43 AC 39 ms
101,508 KB
testcase_44 AC 41 ms
101,448 KB
testcase_45 AC 40 ms
101,536 KB
testcase_46 AC 40 ms
101,540 KB
testcase_47 AC 39 ms
101,508 KB
testcase_48 AC 34 ms
101,500 KB
testcase_49 AC 33 ms
101,372 KB
testcase_50 AC 33 ms
101,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

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

int dp[5010][5010];
const int INF=1e9+7;

int main(){
  int n;
  cin>>n;
  
  vector<int> A(n+1);
  rep(i,n) cin>>A[i];
  A[n]=2;
  
  vector<int> B,C,D;
  int cnt0=0,cnt1=0,sum0=0;
  rep(i,n+1){
    if(A[i]==0){
      cnt0++;
      sum0++;
    }
    else if(A[i]==1) cnt1++;
    else{
      if(cnt0==0 && cnt1==0) continue;
      else{
        B.push_back(cnt0);
        C.push_back(cnt1);
        D.push_back(cnt0+cnt1);
        cnt0=0,cnt1=0;
      }
    }
  }
  
  rep(i,5010) rep(j,5010) dp[i][j]=INF;
  dp[0][sum0]=0;
  int m=B.size();
  rep(i,m){
    rep(j,sum0+1){
      if(dp[i][j]==INF) continue;
      dp[i+1][j]=min(dp[i+1][j],dp[i][j]+B[i]);
      if(j-D[i]>=0) dp[i+1][j-D[i]]=min(dp[i+1][j-D[i]],dp[i][j]+C[i]);
    }
  }
  
  if(dp[m][0]==INF) cout<<-1<<endl;
  else cout<<dp[m][0]/2<<endl;

  return 0;
}
0