結果

問題 No.2840 RGB Plates
ユーザー みここみここ
提出日時 2024-08-09 22:52:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 71,212 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-18 00:59:27
合計ジャッジ時間 7,896 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 75 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 446 ms
6,944 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 5 ms
6,944 KB
testcase_10 AC 452 ms
6,940 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 354 ms
6,944 KB
testcase_13 AC 236 ms
6,940 KB
testcase_14 AC 324 ms
6,940 KB
testcase_15 AC 303 ms
6,944 KB
testcase_16 AC 266 ms
6,940 KB
testcase_17 AC 321 ms
6,940 KB
testcase_18 AC 453 ms
6,940 KB
testcase_19 AC 433 ms
6,940 KB
testcase_20 AC 446 ms
6,940 KB
testcase_21 AC 441 ms
6,940 KB
testcase_22 AC 448 ms
6,944 KB
testcase_23 AC 61 ms
6,940 KB
testcase_24 AC 52 ms
6,944 KB
testcase_25 AC 71 ms
6,940 KB
testcase_26 AC 278 ms
6,940 KB
testcase_27 AC 202 ms
6,940 KB
testcase_28 AC 203 ms
6,944 KB
testcase_29 AC 262 ms
6,944 KB
testcase_30 AC 417 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <bitset>
using namespace std;

bitset<2000001> b;
bitset<2000001> e;
bitset<2000001> c;

int main()
{
    int n;
    cin >> n;
    b.set(0, true);
    int s = 0;
    for (int i = 0; i < n; i++)
    {
        int a;
        cin >> a;
        s += a;
        c = b << a;
        e |= b & c;
        b |= c;
    }
    for (int i = 1; i * 2 < s; i++)
    {
        if (e[i])
        {
            cout << s - i * 2 << endl;
            return 0;
        }
    }
    cout << -1 << endl;
}
0