# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1027183 |
2024-07-19T01:49:46 Z |
cnn008 |
Sure Bet (CEOI17_sure) |
C++17 |
|
75 ms |
2396 KB |
#include "bits/stdc++.h"
using namespace std;
#ifdef N_N_C
#include "debug.h"
#else
#define cebug(...) "Arya"
#endif
#define int long long
#define double long double
const int N=1e5+5;
const int mod=1e9+7;
int n;
double a[N],b[N],ans=-100000.0;
void sol(){
cin>>n;
assert(n<=10);
for(int i=1; i<=n; i++) cin>>a[i];
for(int i=1; i<=n; i++) cin>>b[i];
for(int ma=0; ma<(1<<n); ma++){
for(int mb=0; mb<(1<<n); mb++){
double s1=0,s2=0;
double v1=0,v2=0;
for(int i=0; i<n; i++) if((ma>>i)&1) v1+=1.0,s1+=a[i+1];
for(int i=0; i<n; i++) if((mb>>i)&1) v2+=1.0,s2+=b[i+1];
ans=max(ans,min(s1-v1-v2,s2-v1-v2));
}
}
cout<<fixed<<setprecision(4)<<ans;
}
signed main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
// freopen(".inp", "r", stdin);
// freopen(".out", "w", stdout);
int tt=1;
//cin>>tt;
while(tt--){
sol();
}
cerr << "\nTime elapsed: " << 1000.0 * clock() / CLOCKS_PER_SEC << " ms.\n";
return 0;
}
/** /\_/\
* (= ._.)
* / >💖 \>💕
**/
Compilation message
sure.cpp:47:9: warning: "/*" within comment [-Wcomment]
47 | /** /\_/\
|
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
2396 KB |
Output is correct |
2 |
Correct |
0 ms |
2396 KB |
Output is correct |
3 |
Incorrect |
75 ms |
2396 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
2396 KB |
Output is correct |
2 |
Correct |
0 ms |
2396 KB |
Output is correct |
3 |
Incorrect |
75 ms |
2396 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
2396 KB |
Output is correct |
2 |
Correct |
0 ms |
2396 KB |
Output is correct |
3 |
Incorrect |
75 ms |
2396 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |