結果

問題 No.1606 Stuffed Animals Keeper
ユーザー milanis48663220milanis48663220
提出日時 2021-07-16 22:15:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 63 ms / 3,000 ms
コード長 2,397 bytes
コンパイル時間 1,061 ms
コンパイル使用メモリ 123,356 KB
実行使用メモリ 68,608 KB
最終ジャッジ日時 2024-07-06 09:35:41
合計ジャッジ時間 2,891 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 27 ms
29,952 KB
testcase_04 AC 32 ms
36,992 KB
testcase_05 AC 7 ms
8,960 KB
testcase_06 AC 11 ms
14,208 KB
testcase_07 AC 22 ms
25,728 KB
testcase_08 AC 19 ms
23,936 KB
testcase_09 AC 10 ms
11,904 KB
testcase_10 AC 5 ms
7,680 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 11 ms
14,336 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 41 ms
46,336 KB
testcase_17 AC 41 ms
46,976 KB
testcase_18 AC 41 ms
47,232 KB
testcase_19 AC 41 ms
46,848 KB
testcase_20 AC 41 ms
46,720 KB
testcase_21 AC 8 ms
9,856 KB
testcase_22 AC 7 ms
9,216 KB
testcase_23 AC 7 ms
9,216 KB
testcase_24 AC 7 ms
9,984 KB
testcase_25 AC 7 ms
9,472 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 4 ms
5,504 KB
testcase_30 AC 4 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 3 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 63 ms
68,608 KB
testcase_44 AC 62 ms
68,608 KB
testcase_45 AC 60 ms
68,480 KB
testcase_46 AC 60 ms
68,480 KB
testcase_47 AC 60 ms
68,608 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 1 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;


template <typename T>
class OffsetVec{
    public:
	int n;
    vector<T> v;
	T& operator[](int x) {
        return v[x+n];
	}
    void print(){
        for(int i = -n; i <= n; i++) cout << v[i+n] << ' ';
        cout << endl;
    }
    OffsetVec(int _n){
        n = _n;
        v = vector<T>(2*n+1);
    }
    OffsetVec(int _n, T x){
        n = _n;
        v = vector<T>(2*n+1, x);
    }
};

const int INF = 1e9;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n; cin >> n;
    vector<int> a(n);
    for(int i = 0; i < n; i++) cin >> a[i];
    vector<int> s, t;
    vector<int> cnt(2);
    auto add = [&](){
        if(cnt[0]+cnt[1] > 0){
            s.push_back(cnt[0]);
            t.push_back(cnt[1]);
        }
    };
    for(int i = 0; i < n; i++){
        if(a[i] == 2){
            add();
            cnt[0] = 0;      
            cnt[1] = 0;      
        }else{
            cnt[a[i]]++;
        }
    }
    add();
    int m = s.size();
    vector<OffsetVec<int>> dp(m+1, OffsetVec<int>(n+1, INF));
    dp[0][0] = 0;
    for(int i = 0; i < m; i++){
        // cout << s[i] << ' ' << t[i] << endl;
        for(int j = -n; j <= n; j++){
            if(dp[i][j] == INF) continue;
            // 0の場所にする
            if(j < 0){
                chmin(dp[i+1][j+t[i]], dp[i][j]+min(-j, t[i]));
            }else{
                chmin(dp[i+1][j+t[i]], dp[i][j]);
            }
            // 1の場所にする
            if(j < 0){
                chmin(dp[i+1][j-s[i]], dp[i][j]);
            }else{
                chmin(dp[i+1][j-s[i]], dp[i][j]+min(j, s[i]));
            }
        }
    }
    if(dp[m][0] == INF) cout << -1 << endl;
    else cout << dp[m][0] << endl;
}
0