結果
問題 | No.2840 RGB Plates |
ユーザー | karinohito |
提出日時 | 2024-08-09 23:41:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 602 bytes |
コンパイル時間 | 4,517 ms |
コンパイル使用メモリ | 267,212 KB |
実行使用メモリ | 17,828 KB |
最終ジャッジ日時 | 2024-08-09 23:41:17 |
合計ジャッジ時間 | 8,101 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
17,828 KB |
testcase_01 | AC | 7 ms
10,748 KB |
testcase_02 | AC | 19 ms
10,912 KB |
testcase_03 | AC | 8 ms
10,784 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #include<atcoder/all> using namespace atcoder; using ll = long long; const ll mod=998244353; using BS=bitset<15000010>; int main() { ll N; cin>>N; vector<ll> A(N); for(ll &a:A)cin>>a; sort(A.begin(),A.end()); BS B; B[0]=1; ll an=1e18; ll S=0; for(int i=0;i<N;i++){ S+=A[i]; BS NB=B; NB<<=A[i]; // cout<<NB<<endl; BS P=NB&B; if(P.any()){ an=min(an,ll(P._Find_first())); } B=NB|B; } cout<<(an<1e18&&S-2*an>0?S-2*an:-1)<<endl; }