結果

問題 No.1606 Stuffed Animals Keeper
ユーザー auauaauaua
提出日時 2021-07-16 22:19:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,784 bytes
コンパイル時間 1,364 ms
コンパイル使用メモリ 173,016 KB
実行使用メモリ 136,576 KB
最終ジャッジ日時 2024-07-06 09:41:56
合計ジャッジ時間 3,994 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 66 ms
82,304 KB
testcase_04 AC 82 ms
103,680 KB
testcase_05 AC 14 ms
20,992 KB
testcase_06 AC 25 ms
35,840 KB
testcase_07 AC 54 ms
68,608 KB
testcase_08 AC 50 ms
66,688 KB
testcase_09 AC 21 ms
28,672 KB
testcase_10 AC 12 ms
18,048 KB
testcase_11 AC 6 ms
9,472 KB
testcase_12 AC 24 ms
34,560 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 108 ms
135,040 KB
testcase_17 AC 109 ms
136,576 KB
testcase_18 AC 109 ms
135,424 KB
testcase_19 AC 110 ms
134,784 KB
testcase_20 AC 112 ms
135,296 KB
testcase_21 AC 13 ms
16,896 KB
testcase_22 AC 10 ms
15,104 KB
testcase_23 AC 10 ms
15,232 KB
testcase_24 AC 10 ms
16,640 KB
testcase_25 AC 10 ms
15,744 KB
testcase_26 AC 5 ms
7,040 KB
testcase_27 AC 5 ms
7,296 KB
testcase_28 AC 5 ms
6,944 KB
testcase_29 AC 5 ms
7,680 KB
testcase_30 AC 4 ms
6,272 KB
testcase_31 AC 4 ms
6,016 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 4 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 3 ms
5,376 KB
testcase_39 AC 3 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 3 ms
5,376 KB
testcase_43 AC 106 ms
133,888 KB
testcase_44 AC 105 ms
133,888 KB
testcase_45 AC 106 ms
133,760 KB
testcase_46 AC 108 ms
133,760 KB
testcase_47 AC 108 ms
133,888 KB
testcase_48 WA -
testcase_49 AC 1 ms
5,376 KB
testcase_50 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
#define REP(i,m,n) for(int i=(m);i<(n);i++)
#define rep(i,n) REP(i,0,n)
#define pb push_back
#define all(a) a.begin(),a.end()
#define rall(c) (c).rbegin(),(c).rend()
#define mp make_pair
#define endl '\n'
//#define vec vector<ll>
//#define mat vector<vector<ll> >
#define fi first
#define se second
#define double long double
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll> pll;
//typedef long double ld;
typedef complex<double> Complex;
const ll INF=1e9+7;
const ll MOD=998244353;
const ll inf=INF*INF;
const ll mod=INF;
const ll MAX=1000010;
const double PI=acos(-1.0);
typedef vector<vector<ll> > mat;
typedef vector<ll> vec;





signed main(){
    ll n;cin>>n;
    vector<ll>a(n);
    rep(i,n)cin>>a[i];
    ll cnt=0;
    ll cn=0;
    vector<ll>b(0);
    vector<ll>c(0);
    ll cnt2=0;
    ll cnt0=0;
    ll cnt1=0;
    rep(i,n){
        if(a[i]==2){
            b.pb(cnt);
            c.pb(cn);
            cn=0;
            cnt=0;
            cnt2++;
        }else{
            if(a[i]==0)cn++;
            cnt++;
            if(a[i]==1)cnt1++;
            if(a[i]==0)cnt0++;
        }
    }
    if(cnt1==0||cnt0==0){
        cout<<0<<endl;
        return 0;
    }
    if(cnt2==0){
        cout<<-1<<endl;
    }
    b.pb(cnt);
    c.pb(cn);
    vector<vector<ll> >dp(b.size()+1,vector<ll>(2*n,inf));
    dp[0][n]=0;
    rep(i,b.size()){
        rep(j,2*n){
            if(dp[i][j]==inf)continue;
            ll x=c[i];
            ll y=b[i]-c[i];
            dp[i+1][j+x]=min(dp[i+1][j+x],dp[i][j]+x);
            dp[i+1][j-y]=min(dp[i+1][j-y],dp[i][j]+y);
        }
    }
    if(dp[b.size()][n]==inf){
        cout<<-1<<endl;
    }else{
        cout<<dp[b.size()][n]/2<<endl;
    }
}
0