Codeforces 735B - Urbanization 贪心

    xiaoxiao2021-12-14  22

    B. Urbanization time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output

    Local authorities have heard a lot about combinatorial abilities of Ostap Bender so they decided to ask his help in the question of urbanization. There are n people who plan to move to the cities. The wealth of the i of them is equal to ai. Authorities plan to build two cities, first for n1 people and second for n2 people. Of course, each of n candidates can settle in only one of the cities. Thus, first some subset of candidates of size n1 settle in the first city and then some subset of size n2 is chosen among the remaining candidates and the move to the second city. All other candidates receive an official refuse and go back home.

    To make the statistic of local region look better in the eyes of their bosses, local authorities decided to pick subsets of candidates in such a way that the sum of arithmetic mean of wealth of people in each of the cities is as large as possible. Arithmetic mean of wealth in one city is the sum of wealth ai among all its residents divided by the number of them (n1 or n2 depending on the city). The division should be done in real numbers without any rounding.

    Please, help authorities find the optimal way to pick residents for two cities.

    Input

    The first line of the input contains three integers nn1 and n2 (1 ≤ n, n1, n2 ≤ 100 000n1 + n2 ≤ n) — the number of candidates who want to move to the cities, the planned number of residents of the first city and the planned number of residents of the second city.

    The second line contains n integers a1, a2, ..., an (1 ≤ ai ≤ 100 000), the i-th of them is equal to the wealth of the i-th candidate.

    Output

    Print one real value — the maximum possible sum of arithmetic means of wealth of cities' residents. You answer will be considered correct if its absolute or relative error does not exceed 10 - 6.

    Namely: let's assume that your answer is a, and the answer of the jury is b. The checker program will consider your answer correct, if .

    Examples input 2 1 1 1 5 output 6.00000000 input 4 2 1 1 4 2 3 output 6.50000000 Note

    In the first sample, one of the optimal solutions is to move candidate 1 to the first city and candidate 2 to the second.

    In the second sample, the optimal solution is to pick candidates 3 and 4 for the first city, and candidate 2 for the second one. Thus we obtain (a3 + a4) / 2 + a2 = (3 + 2) / 2 + 4 = 6.5

    计算各公式 sum1/n1 + sum2/n2  = (sum1*n2+sum2*n1)/n1*n2

    贪心,使分子最大

    #include <iostream> #include <cstdio> #include <cstdlib> #include <cmath> #include <algorithm> #include <climits> #include <cstring> #include <string> #include <set> #include <map> #include <queue> #include <stack> #include <vector> #include <list> #define rep(i,m,n) for(i=m;i<=n;i++) #define rsp(it,s) for(set<int>::iterator it=s.begin();it!=s.end();it++) const int inf_int = 2e9; const long long inf_ll = 2e18; #define inf_add 0x3f3f3f3f #define mod 1000000007 #define vi vector<int> #define pb push_back #define mp make_pair #define fi first #define se second #define pi acos(-1.0) #define pii pair<int,int> #define Lson L, mid, rt<<1 #define Rson mid+1, R, rt<<1|1 const int maxn=5e2+10; using namespace std; typedef long long ll; typedef unsigned long long ull; inline int read(){int ra,fh;char rx;rx=getchar(),ra=0,fh=1; while((rx<'0'||rx>'9')&&rx!='-')rx=getchar();if(rx=='-') fh=-1,rx=getchar();while(rx>='0'&&rx<='9')ra*=10,ra+=rx-48, rx=getchar();return ra*fh;} //#pragma comment(linker, "/STACK:102400000,102400000") ll gcd(ll p,ll q){return q==0?p:gcd(q,p%q);} ll qpow(ll p,ll q){ll f=1;while(q){if(q&1)f=f*p;p=p*p;q>>=1;}return f;} ll n,n1,n2; ll a[100005]; int main() { double re=0; ll sum1=0,sum2=0; //ios::sync_with_stdio(false); cin >> n >>n1 >>n2; for(int i=0;i<n;i++) // cin >> a[i]; scanf("%I64d",&a[i]); sort(a,a+n); if(n1>n2) swap(n1,n2); for(int i=n-1;i>n-1-n1;i--) { sum1+=a[i]; } for(int i=n-1-n1;i>n-1-n1-n2;i--) { sum2+=a[i]; } re = (double)(sum1*n2+sum2*n1)/(double)(n1*n2); printf("%f\n",re); return 0; }

    转载请注明原文地址: https://ju.6miu.com/read-969699.html

    最新回复(0)