0
已解决
王星河
资深光能
资深光能
求 dalao 指导
0
已采纳
梁锦程
高级光能
高级光能
for(int i=1; i<=n; i++)
{
cin>>a[i];
sum+=a[i];
}
int x,y;
cin>>x>>y;
for(int i=1; i<=n; i++)
if(a[i]<x) total1+=x-a[i];
else if(a[i]>y) total2+=a[i]-y;
if(sum/n<x||sum/n>y) cout<<-1;//判断是否满足题目条件
else cout<<max(total1,total2);
0
0