結果

問題 No.1606 Stuffed Animals Keeper
ユーザー ktr216ktr216
提出日時 2021-07-16 22:53:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 31 ms / 3,000 ms
コード長 1,127 bytes
コンパイル時間 1,387 ms
コンパイル使用メモリ 172,232 KB
実行使用メモリ 35,968 KB
最終ジャッジ日時 2024-07-06 10:25:47
合計ジャッジ時間 2,780 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 13 ms
16,768 KB
testcase_04 AC 16 ms
20,096 KB
testcase_05 AC 4 ms
6,016 KB
testcase_06 AC 6 ms
8,576 KB
testcase_07 AC 12 ms
14,592 KB
testcase_08 AC 10 ms
13,568 KB
testcase_09 AC 5 ms
7,552 KB
testcase_10 AC 3 ms
5,632 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 6 ms
8,704 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 21 ms
24,832 KB
testcase_17 AC 21 ms
25,216 KB
testcase_18 AC 20 ms
25,344 KB
testcase_19 AC 20 ms
25,088 KB
testcase_20 AC 20 ms
24,960 KB
testcase_21 AC 5 ms
6,784 KB
testcase_22 AC 5 ms
6,400 KB
testcase_23 AC 4 ms
6,272 KB
testcase_24 AC 5 ms
6,784 KB
testcase_25 AC 5 ms
6,528 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 2 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 3 ms
5,376 KB
testcase_43 AC 31 ms
35,968 KB
testcase_44 AC 29 ms
35,968 KB
testcase_45 AC 28 ms
35,968 KB
testcase_46 AC 29 ms
35,968 KB
testcase_47 AC 28 ms
35,968 KB
testcase_48 AC 1 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, l, r) for (int i = (l); i < (r); i++)
using namespace std;

typedef long long ll;

int main() {
    int N;
    cin >> N;
    vector<int> A(N, 0), B(1, 0), C(3, 0), D(1, 0);
    rep(i, 0, N) {
        cin >> A[i];
        C[A[i]]++;
        if (A[i] == 2) {
            if (B.back() > 0) {
                B.push_back(0);
                D.push_back(0);
            }
        } else {
            B.back()++;
            D.back() += A[i];
        }
    }
    if (B.back() == 0) {
        B.pop_back();
        D.pop_back();
    }
    int M = B.size();
    //rep(i, 0, M) cout << B[i] << " "; cout << endl;
    //rep(i, 0, M) cout << D[i] << " "; cout << endl;
    vector<vector<int>> dp(M + 1, vector<int>(N + 1, 1e9));
    dp[0][0] = 0;
    rep(i, 0, M) {
        rep(j, 0, N) {
            if (dp[i][j] == 1e9) continue;
            dp[i + 1][j] = min(dp[i + 1][j], dp[i][j] + D[i]);
            dp[i + 1][j + B[i]] = min(dp[i + 1][j + B[i]], dp[i][j] + B[i] - D[i]);
        }
    }
    int ans = dp[M][C[1]];
    if (ans == 1e9) ans = -1;
    else ans /= 2;
    cout << ans << endl;
}
0