結果
問題 | No.1606 Stuffed Animals Keeper |
ユーザー | siman |
提出日時 | 2023-05-02 11:14:05 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,550 bytes |
コンパイル時間 | 8,264 ms |
コンパイル使用メモリ | 143,992 KB |
実行使用メモリ | 35,968 KB |
最終ジャッジ日時 | 2024-11-21 02:35:20 |
合計ジャッジ時間 | 10,037 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 3 ms
6,820 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 2 ms
6,820 KB |
testcase_33 | WA | - |
testcase_34 | AC | 2 ms
6,820 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 3 ms
6,816 KB |
testcase_40 | AC | 2 ms
6,816 KB |
testcase_41 | AC | 3 ms
6,820 KB |
testcase_42 | AC | 3 ms
6,820 KB |
testcase_43 | WA | - |
testcase_44 | AC | 31 ms
35,840 KB |
testcase_45 | AC | 31 ms
35,840 KB |
testcase_46 | AC | 31 ms
35,840 KB |
testcase_47 | AC | 31 ms
35,840 KB |
testcase_48 | AC | 2 ms
6,816 KB |
testcase_49 | AC | 1 ms
6,816 KB |
testcase_50 | WA | - |
ソースコード
#include <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <climits> #include <map> #include <queue> #include <set> #include <cstring> #include <vector> using namespace std; typedef long long ll; int main() { int N; cin >> N; int A[N]; for (int i = 0; i < N; ++i) { cin >> A[i]; } int zero_cnt = 0; int one_cnt = 0; int cnt = 0; int div_cnt = 0; vector<int> swap_cnt; vector<int> div_size; for (int i = 0; i < N; ++i) { int a = A[i]; if (a == 2) { if (cnt > 0) { swap_cnt.push_back(one_cnt); div_size.push_back(cnt); div_cnt++; cnt = 0; one_cnt = 0; } } else { cnt++; if (a == 1) { one_cnt++; } else { zero_cnt++; } } } if (cnt > 0) { div_cnt++; swap_cnt.push_back(one_cnt); div_size.push_back(cnt); } vector<vector<int>> dp(div_cnt + 1, vector<int>(N + 1, INT_MAX)); dp[0][0] = 0; int ans = INT_MAX; for (int i = 1; i <= div_cnt; ++i) { int size = div_size[i - 1]; int sc = swap_cnt[i - 1]; // fprintf(stderr, "i: %d, size: %d, sc: %d\n", i, size, sc); for (int len = 0; len < zero_cnt; ++len) { if (dp[i - 1][len] == INT_MAX) continue; int n_size = len + size; int n_sc = dp[i - 1][len] + sc; dp[i][n_size] = min(dp[i][n_size], n_sc); } ans = min(ans, dp[i][zero_cnt]); } if (ans == INT_MAX) { cout << -1 << endl; } else { cout << ans << endl; } return 0; }