結果

問題 No.2840 RGB Plates
ユーザー みここみここ
提出日時 2024-08-09 22:51:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 513 bytes
コンパイル時間 749 ms
コンパイル使用メモリ 70,928 KB
実行使用メモリ 8,528 KB
最終ジャッジ日時 2024-08-09 22:52:17
合計ジャッジ時間 35,108 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
8,320 KB
testcase_01 AC 7 ms
8,396 KB
testcase_02 AC 15 ms
8,320 KB
testcase_03 AC 6 ms
8,396 KB
testcase_04 TLE -
testcase_05 AC 14 ms
8,320 KB
testcase_06 AC 14 ms
8,320 KB
testcase_07 AC 14 ms
8,320 KB
testcase_08 AC 18 ms
8,320 KB
testcase_09 TLE -
testcase_10 AC 14 ms
8,320 KB
testcase_11 AC 1,857 ms
8,448 KB
testcase_12 AC 1,186 ms
8,524 KB
testcase_13 AC 1,688 ms
8,268 KB
testcase_14 AC 1,578 ms
8,320 KB
testcase_15 AC 1,364 ms
8,396 KB
testcase_16 AC 1,665 ms
8,404 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 296 ms
8,320 KB
testcase_23 AC 248 ms
8,320 KB
testcase_24 AC 354 ms
8,400 KB
testcase_25 AC 1,382 ms
8,272 KB
testcase_26 AC 1,040 ms
8,320 KB
testcase_27 AC 1,035 ms
8,320 KB
testcase_28 AC 1,342 ms
8,320 KB
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

bitset<8000001> b;
bitset<8000001> e;
bitset<8000001> 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