結果

問題 No.1606 Stuffed Animals Keeper
ユーザー んんんんんん
提出日時 2022-12-30 12:16:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 111 ms / 3,000 ms
コード長 1,005 bytes
コンパイル時間 2,258 ms
コンパイル使用メモリ 206,712 KB
実行使用メモリ 101,120 KB
最終ジャッジ日時 2024-11-25 08:59:41
合計ジャッジ時間 4,534 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 27 ms
23,040 KB
testcase_04 AC 33 ms
28,416 KB
testcase_05 AC 7 ms
7,552 KB
testcase_06 AC 11 ms
11,392 KB
testcase_07 AC 22 ms
19,456 KB
testcase_08 AC 22 ms
19,328 KB
testcase_09 AC 10 ms
9,600 KB
testcase_10 AC 7 ms
6,912 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 12 ms
11,264 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 111 ms
101,120 KB
testcase_16 AC 42 ms
36,224 KB
testcase_17 AC 40 ms
36,608 KB
testcase_18 AC 40 ms
36,352 KB
testcase_19 AC 40 ms
36,096 KB
testcase_20 AC 39 ms
36,352 KB
testcase_21 AC 6 ms
6,784 KB
testcase_22 AC 6 ms
6,400 KB
testcase_23 AC 6 ms
6,272 KB
testcase_24 AC 7 ms
6,784 KB
testcase_25 AC 7 ms
6,272 KB
testcase_26 AC 4 ms
5,248 KB
testcase_27 AC 4 ms
5,248 KB
testcase_28 AC 4 ms
5,248 KB
testcase_29 AC 4 ms
5,248 KB
testcase_30 AC 4 ms
5,248 KB
testcase_31 AC 3 ms
5,248 KB
testcase_32 AC 3 ms
5,248 KB
testcase_33 AC 3 ms
5,248 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 3 ms
5,248 KB
testcase_36 AC 3 ms
5,248 KB
testcase_37 AC 3 ms
5,248 KB
testcase_38 AC 3 ms
5,248 KB
testcase_39 AC 3 ms
5,248 KB
testcase_40 AC 3 ms
5,248 KB
testcase_41 AC 3 ms
5,248 KB
testcase_42 AC 3 ms
5,248 KB
testcase_43 AC 41 ms
35,968 KB
testcase_44 AC 41 ms
35,968 KB
testcase_45 AC 41 ms
35,968 KB
testcase_46 AC 41 ms
35,968 KB
testcase_47 AC 41 ms
35,968 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int N;
    cin >> N;
    vector<int> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];

    vector<int> len, cnt;
    int s = -1;
    int c = 0;
    for (int i = 0; i <= N; i++) {
        if (i == N || A[i] == 2) {
            len.push_back(i - s - 1);
            cnt.push_back(c);
            s = i;
            c = 0;
        }
        if (i != N && A[i] == 1) c++;
    }

    int M = len.size();
    vector<vector<int>> dp(M+1, vector<int>(N+1, 1 << 30));
    dp[0][0] = 0;
    for (int i = 0; i < M; i++) {
        for (int j = N; j >= 0; j--) {
            if (j - len[i] >= 0 && dp[i][j-len[i]] != 1 << 30) {
                dp[i+1][j] = min(dp[i+1][j], dp[i][j-len[i]] + cnt[i]);
            }
            dp[i+1][j] = min(dp[i+1][j], dp[i][j]);
        }
    }

    int count = 0;
    for (int i = 0; i < N; i++) if (A[i] == 0) count++;

    int ans = dp[M][count];
    if (ans == 1 << 30) ans = -1;
    
    cout << ans << endl;
}
0