結果
問題 | No.2840 RGB Plates |
ユーザー | KumaTachiRen |
提出日時 | 2024-08-09 23:00:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,603 bytes |
コンパイル時間 | 6,704 ms |
コンパイル使用メモリ | 306,416 KB |
実行使用メモリ | 7,348 KB |
最終ジャッジ日時 | 2024-08-09 23:01:05 |
合計ジャッジ時間 | 48,890 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
7,168 KB |
testcase_01 | AC | 6 ms
7,184 KB |
testcase_02 | AC | 13 ms
7,088 KB |
testcase_03 | AC | 6 ms
7,120 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 15 ms
7,168 KB |
testcase_06 | AC | 15 ms
7,224 KB |
testcase_07 | AC | 16 ms
7,108 KB |
testcase_08 | AC | 18 ms
7,284 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 15 ms
7,168 KB |
testcase_11 | TLE | - |
testcase_12 | AC | 1,448 ms
7,136 KB |
testcase_13 | TLE | - |
testcase_14 | AC | 1,892 ms
7,212 KB |
testcase_15 | AC | 1,717 ms
7,108 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | AC | 365 ms
7,168 KB |
testcase_23 | AC | 302 ms
7,148 KB |
testcase_24 | AC | 431 ms
7,104 KB |
testcase_25 | AC | 1,724 ms
7,128 KB |
testcase_26 | AC | 1,258 ms
7,008 KB |
testcase_27 | AC | 1,269 ms
7,180 KB |
testcase_28 | AC | 1,689 ms
7,168 KB |
testcase_29 | TLE | - |
ソースコード
#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, bs2; bs1[0] = 1; rep(i, 0, n) { bs2 |= bs2 << a[i]; bs2 |= bs1 & (bs1 << a[i]); bs1 |= bs1 << a[i]; } int ans = -1; for (int k = 1; m - 2 * k > 0; k++) if (bs2[k]) ans = max(ans, m - 2 * k); cout << ans << "\n"; } int main() { int t = 1; // cin >> t; while (t--) solve(); }