結果
問題 | No.2840 RGB Plates |
ユーザー | get_tanni |
提出日時 | 2024-08-09 22:03:19 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,982 bytes |
コンパイル時間 | 8,184 ms |
コンパイル使用メモリ | 350,528 KB |
実行使用メモリ | 237,952 KB |
最終ジャッジ日時 | 2024-08-09 22:03:33 |
合計ジャッジ時間 | 11,264 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 226 ms
237,952 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 205 ms
237,824 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 219 ms
237,952 KB |
testcase_18 | AC | 208 ms
237,952 KB |
testcase_19 | AC | 195 ms
237,952 KB |
testcase_20 | AC | 201 ms
237,824 KB |
testcase_21 | AC | 203 ms
237,824 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 121 ms
147,712 KB |
testcase_26 | AC | 101 ms
107,776 KB |
testcase_27 | AC | 91 ms
111,104 KB |
testcase_28 | AC | 116 ms
141,440 KB |
testcase_29 | AC | 189 ms
226,176 KB |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> #include <atcoder/all> using std::cout; using namespace std; using ll=long long; using ld=long double; using P=array<ll,2>; #define rep(i,n) for (ll i=0,siz=(n);i<siz;i++) #define rep2(i,a,b) for (ll i=(a),siz=(b);i<siz;i++) #define repd(i,a,b) for (ll i=(a),siz=(b);i>=siz;i--) #define popcount __builtin_popcountll #define cin(a) ll a; cin >> a; #define cin2(a,b) ll a,b; cin >> a >> b; #define cin3(a,b,c) ll a,b,c; cin >> a >> b >> c; #define cinvec(v) vector<ll> v(N); rep(i,N) cin >> v[i]; #define cinvec2(v,n) vector<ll> v(n); rep(i,n) cin >> v[i]; #define cins(s) string s; cin >> s; #define cinc(c) char c; cin >> c; #define seg_RaRmax atcoder::lazy_segtree<ll, [&](ll a, ll b){ return max(a,b);},[&](){return 0;},ll,[&](ll m, ll n){ return m+n;}, [&](ll a, ll b){return a+b;},[&](){return 0;}> #define seg_RaRsum atcoder::lazy_segtree<array<ll,2>, [&](array<ll,2> a, array<ll,2> b){ return array<ll,2>{a[0]+b[0],a[1]+b[1]};},[&](){return array<ll,2>{0,0};},ll,[&](ll m, array<ll,2> n){ return array<ll,2>{m[0]+n*m[1],m[1]};}, [&](ll a, ll b){return a+b;},[&](){return 0;}> vector<ll> dx = {0,-1,0,1},dy = {1,0,-1,0}, ddx = {0,-1,-1,-1,0,1,1,1}, ddy = {1,1,0,-1,-1,-1,0,1}; void yesno(bool b) {cout << (b?"Yes":"No") << endl;} template<class T> void sortunique(vector<T> &V) {sort(V.begin(), V.end()); V.erase(unique(V.begin(), V.end()), V.end());} template<typename T> void outvec(const std::initializer_list<T>& list) { bool first = true; for (const auto& elem : list) { if (!first) std::cout << " "; std::cout << elem; first = false; } std::cout << std::endl; } template<typename T> void outvec(const std::vector<T>& vec) { bool first = true; for (const auto& elem : vec) { if (!first) std::cout << " "; std::cout << elem; first = false; } std::cout << std::endl; } template<typename T, size_t N> void outvecp(const std::vector<std::array<T,N>>& vec) { bool first = true; for (const auto& elem : vec) { if (!first) std::cout << " "; for (int i = 0; i < N; i++) std::cout << elem[i] << " "; first = false; } std::cout << std::endl; } vector<ll> compress(vector<ll> &A){vector<ll> B = A; sortunique(B); rep(i,A.size()) A[i] = lower_bound(B.begin(),B.end(),A[i]) - B.begin(); return B;} ll bs(ll l, ll r, function<bool(ll)> f) { while (r-l > 1) { ll m = (l+r)/2; if (f(m)) r = m; else l = m; } return r; } ll msb(ll N) { assert(N>0); return 63 - __builtin_clzll(N); } int main() { cin(N); cinvec(A); vector<vector<ll>> dp(N+1,vector<ll>(10001,0)); dp[0][0] = 1; rep(i,N){ rep(j,10001){ if (j >= A[i]) dp[i+1][j] = dp[i][j]+dp[i][j-A[i]]; else dp[i+1][j] = dp[i][j]; } } ll ans = 1e18; rep2(i,1,5001){ if (dp[N][i] > 1) ans = min(ans,i); } if (ans == 1e18) cout << -1 << endl; else cout << accumulate(A.begin(),A.end(),0ll)-ans*2 << endl; return 0; }