結果

問題 No.2840 RGB Plates
ユーザー rniyarniya
提出日時 2024-08-09 23:15:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 688 ms / 2,000 ms
コード長 1,984 bytes
コンパイル時間 3,342 ms
コンパイル使用メモリ 260,592 KB
実行使用メモリ 413,312 KB
最終ジャッジ日時 2024-08-18 01:01:16
合計ジャッジ時間 10,033 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 49 ms
36,480 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 385 ms
290,304 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 688 ms
413,312 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 413 ms
254,848 KB
testcase_13 AC 240 ms
180,860 KB
testcase_14 AC 322 ms
239,360 KB
testcase_15 AC 299 ms
222,336 KB
testcase_16 AC 273 ms
204,800 KB
testcase_17 AC 315 ms
236,416 KB
testcase_18 AC 315 ms
233,856 KB
testcase_19 AC 334 ms
247,424 KB
testcase_20 AC 303 ms
227,456 KB
testcase_21 AC 313 ms
232,448 KB
testcase_22 AC 290 ms
218,240 KB
testcase_23 AC 62 ms
46,720 KB
testcase_24 AC 54 ms
40,980 KB
testcase_25 AC 71 ms
54,400 KB
testcase_26 AC 175 ms
133,504 KB
testcase_27 AC 138 ms
104,192 KB
testcase_28 AC 139 ms
105,856 KB
testcase_29 AC 168 ms
128,128 KB
testcase_30 AC 305 ms
227,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#ifdef LOCAL
#include <debug.hpp>
#else
#define debug(...) void(0)
#endif

template <class T> std::istream& operator>>(std::istream& is, std::vector<T>& v) {
    for (auto& e : v) {
        is >> e;
    }
    return is;
}

template <class T> std::ostream& operator<<(std::ostream& os, const std::vector<T>& v) {
    for (std::string_view sep = ""; const auto& e : v) {
        os << std::exchange(sep, " ") << e;
    }
    return os;
}

template <class T, class U = T> bool chmin(T& x, U&& y) {
    return y < x and (x = std::forward<U>(y), true);
}

template <class T, class U = T> bool chmax(T& x, U&& y) {
    return x < y and (x = std::forward<U>(y), true);
}

template <class T> void mkuni(std::vector<T>& v) {
    std::ranges::sort(v);
    auto result = std::ranges::unique(v);
    v.erase(result.begin(), result.end());
}

template <class T> int lwb(const std::vector<T>& v, const T& x) {
    return std::distance(v.begin(), std::ranges::lower_bound(v, x));
}

using ll = long long;

using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(15);
    int N;
    cin >> N;
    vector<int> A(N);
    cin >> A;

    ranges::sort(A);
    ll sum = accumulate(A.begin(), A.end(), 0);
    vector dp(sum / 2 + 1, vector<int>(2, -1));
    dp[0][0] = 0;
    for (int i = 0; i <= sum / 2; i++) {
        if (dp[i][1] != -1) {
            int ans = sum - i * 2;
            if (ans == 0) {
                cout << -1 << "\n";
            } else {
                cout << ans << "\n";
            }
            return 0;
        }
        int x = dp[i][0];
        if (x == -1) continue;
        for (int j = x; j < N; j++) {
            int nxt = i + A[j];
            if (nxt > sum / 2) continue;
            if (dp[nxt][0] == -1) {
                dp[nxt][0] = j + 1;
            } else {
                dp[nxt][1] = j + 1;
            }
        }
    }

    cout << -1 << "\n";
    return 0;
}
0