結果

問題 No.2840 RGB Plates
ユーザー KumaTachiRenKumaTachiRen
提出日時 2024-08-09 23:09:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,764 ms / 2,000 ms
コード長 2,563 bytes
コンパイル時間 8,332 ms
コンパイル使用メモリ 350,220 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-08-18 01:00:46
合計ジャッジ時間 34,965 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,272 KB
testcase_01 AC 5 ms
6,272 KB
testcase_02 AC 11 ms
6,272 KB
testcase_03 AC 292 ms
6,272 KB
testcase_04 AC 6 ms
6,400 KB
testcase_05 AC 1,762 ms
6,144 KB
testcase_06 AC 12 ms
6,272 KB
testcase_07 AC 12 ms
6,144 KB
testcase_08 AC 13 ms
6,272 KB
testcase_09 AC 14 ms
6,144 KB
testcase_10 AC 1,764 ms
6,400 KB
testcase_11 AC 11 ms
6,400 KB
testcase_12 AC 1,421 ms
6,272 KB
testcase_13 AC 890 ms
6,272 KB
testcase_14 AC 1,297 ms
6,272 KB
testcase_15 AC 1,174 ms
6,272 KB
testcase_16 AC 1,057 ms
6,400 KB
testcase_17 AC 1,288 ms
6,272 KB
testcase_18 AC 1,761 ms
6,272 KB
testcase_19 AC 1,757 ms
6,400 KB
testcase_20 AC 1,763 ms
6,144 KB
testcase_21 AC 1,762 ms
6,272 KB
testcase_22 AC 1,762 ms
6,144 KB
testcase_23 AC 232 ms
6,272 KB
testcase_24 AC 194 ms
6,144 KB
testcase_25 AC 276 ms
6,272 KB
testcase_26 AC 1,095 ms
6,400 KB
testcase_27 AC 779 ms
6,272 KB
testcase_28 AC 808 ms
6,400 KB
testcase_29 AC 1,040 ms
6,272 KB
testcase_30 AC 1,674 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

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

#include <atcoder/all>
using namespace atcoder;

using mint = modint998244353;
using vm = vector<mint>;
using vvm = vector<vm>;
inline ostream &operator<<(ostream &os, const mint x)
{
    return os << x.val();
};
inline istream &operator>>(istream &is, mint &x)
{
    long long v;
    is >> v;
    x = v;
    return is;
};

struct Fast
{
    Fast()
    {
        std::cin.tie(nullptr);
        ios::sync_with_stdio(false);
        cout << setprecision(10);
    }
} fast;

#define all(a) (a).begin(), (a).end()
#define contains(a, x) ((a).find(x) != (a).end())
#define rep(i, a, b) for (int i = (a); i < (int)(b); i++)
#define rrep(i, a, b) for (int i = (int)(b) - 1; i >= (a); i--)
#define YN(b) cout << ((b) ? "YES" : "NO") << "\n";
#define Yn(b) cout << ((b) ? "Yes" : "No") << "\n";
#define yn(b) cout << ((b) ? "yes" : "no") << "\n";

template <class T>
inline bool chmin(T &a, T b)
{
    if (a > b)
    {
        a = b;
        return true;
    }
    return false;
}
template <class T>
inline bool chmax(T &a, T b)
{
    if (a < b)
    {
        a = b;
        return true;
    }
    return false;
}

using ll = long long;
using vb = vector<bool>;
using vvb = vector<vb>;
using vi = vector<int>;
using vvi = vector<vi>;
using vl = vector<ll>;
using vvl = vector<vl>;

template <typename T1, typename T2>
ostream &operator<<(ostream &os, pair<T1, T2> &p)
{
    os << "(" << p.first << "," << p.second << ")";
    return os;
}

template <typename T>
ostream &operator<<(ostream &os, vector<T> &vec)
{
    for (int i = 0; i < (int)vec.size(); i++)
    {
        os << vec[i] << (i + 1 == (int)vec.size() ? "" : " ");
    }
    return os;
}
template <typename T>
istream &operator>>(istream &is, vector<T> &vec)
{
    for (int i = 0; i < (int)vec.size(); i++)
        is >> vec[i];
    return is;
}

ll floor(ll a, ll b) { return a >= 0 ? a / b : (a + 1) / b - 1; }
ll ceil(ll a, ll b) { return a > 0 ? (a - 1) / b + 1 : a / b; }

void solve()
{
    int n;
    cin >> n;
    vi a(n);
    cin >> a;

    int m = 0;
    for (auto x : a)
        m += x;

    using bs = bitset<7500001>;
    bs bs1;
    bs1[0] = 1;

    int ans = -1;
    rep(i, 0, n)
    {
        int k = (bs1 & (bs1 << a[i]))._Find_first();
        if (k > 0 && m - 2 * k > 0)
            ans = max(ans, m - 2 * k);
        bs1 |= bs1 << a[i];
    }
    cout << ans << "\n";
}

int main()
{
    int t = 1;
    // cin >> t;
    while (t--)
        solve();
}
0