Submission #1027181

# Submission time Handle Problem Language Result Execution time Memory
1027181 2024-07-19T01:47:58 Z cnn008 Sure Bet (CEOI17_sure) C++17
0 / 100
0 ms 344 KB
#include "bits/stdc++.h"
using namespace std;

#ifdef N_N_C
#include "debug.h"
#else
#define cebug(...) "Arya"
#endif

#define int long long

const int N=1e5+5;
const int mod=1e9+7;

int n;
double a[N],b[N],ans;
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=1; ma<(1<<n); ma++){
		for(int mb=1; mb<(1<<n); mb++){
			double s1=0,s2=0;
			int v1=0,v2=0;
			for(int i=0; i<n; i++) if((ma>>i)&1) v1++,s1+=a[i+1];
			for(int i=0; i<n; i++) if((mb>>i)&1) v2++,s2+=b[i+1];
			ans=max(ans,min(s1-v1-v2,s2-v1-v2));
		}
	}
	cout<<fixed<<setprecision(6)<<ans<<"\n";
}
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:46:9: warning: "/*" within comment [-Wcomment]
   46 | /**  /\_/\
      |
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -