結果

問題 No.1606 Stuffed Animals Keeper
ユーザー trineutrontrineutron
提出日時 2021-07-16 22:22:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 21 ms / 3,000 ms
コード長 1,174 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 208,508 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-07-06 09:45:51
合計ジャッジ時間 4,026 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 14 ms
9,856 KB
testcase_04 AC 16 ms
11,648 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 7 ms
6,944 KB
testcase_07 AC 12 ms
8,832 KB
testcase_08 AC 12 ms
8,832 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 7 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 21 ms
14,208 KB
testcase_17 AC 21 ms
14,208 KB
testcase_18 AC 20 ms
13,952 KB
testcase_19 AC 21 ms
14,208 KB
testcase_20 AC 21 ms
14,336 KB
testcase_21 AC 5 ms
6,944 KB
testcase_22 AC 5 ms
6,944 KB
testcase_23 AC 5 ms
6,940 KB
testcase_24 AC 5 ms
6,940 KB
testcase_25 AC 5 ms
6,944 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 4 ms
6,944 KB
testcase_28 AC 4 ms
6,940 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 4 ms
6,944 KB
testcase_31 AC 3 ms
6,944 KB
testcase_32 AC 3 ms
6,944 KB
testcase_33 AC 3 ms
6,940 KB
testcase_34 AC 3 ms
6,940 KB
testcase_35 AC 3 ms
6,944 KB
testcase_36 AC 3 ms
6,944 KB
testcase_37 AC 3 ms
6,944 KB
testcase_38 AC 3 ms
6,944 KB
testcase_39 AC 3 ms
6,940 KB
testcase_40 AC 3 ms
6,944 KB
testcase_41 AC 3 ms
6,940 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 AC 20 ms
14,080 KB
testcase_44 AC 21 ms
14,336 KB
testcase_45 AC 21 ms
14,208 KB
testcase_46 AC 21 ms
14,464 KB
testcase_47 AC 21 ms
13,952 KB
testcase_48 AC 2 ms
6,944 KB
testcase_49 AC 2 ms
6,944 KB
testcase_50 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main()
{
    int n;
    cin >> n;
    vector<int> a(n);
    for (auto &&x : a)
    {
        cin >> x;
    }
    a.push_back(2);
    vector<int> len, s;
    int k = 0, t = 0;
    for (auto &&x : a)
    {
        if (x == 2)
        {
            len.push_back(k);
            s.push_back(t);
            k = 0;
            t = 0;
        }
        else
        {
            k++;
            t += x;
        }
    }
    int m = len.size(), total = count(a.begin(), a.end(), 1);
    constexpr int inf = 1e9;
    vector dp(m + 1, vector<int>(total + 1, inf));
    dp.at(0).at(0) = 0;
    for (int i = 0; i < m; i++)
    {
        for (int j = 0; j <= total; j++)
        {
            dp.at(i + 1).at(j) = min(dp.at(i + 1).at(j), dp.at(i).at(j) + s.at(i));
            if (j + len.at(i) <= total)
            {
                dp.at(i + 1).at(j + len.at(i)) = min(dp.at(i + 1).at(j + len.at(i)), dp.at(i).at(j) + len.at(i) - s.at(i));
            }
        }
    }
    if (dp.at(m).at(total) == inf)
    {
        cout << -1 << endl;
    }
    else
    {
        cout << dp.at(m).at(total) / 2 << endl;
    }
    return 0;
}
0