码迷,mamicode.com
首页 > 其他好文 > 详细

acm未解之谜-洛谷P1109学生分组

时间:2018-02-19 17:54:04      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:gpo   +=   学生   post   都对   ++   i++   nbsp   for   

把每一组的学生个数调度到一个给定区间范围内;

看了一圈题解,大佬都对原因避而不答;

#include <iostream>
#include <algorithm>
using namespace std;

const int maxn = 55;
int sum=0,a[maxn],n,l,r;
int main(){
    cin>>n;
    for(int i=1;i<=n;i++)
    {
        cin>>a[i];
        sum+=a[i];
    }
    cin>>l>>r;
    if(sum>r*n||sum<l*n)
    {
        cout<<-1<<endl;
        return 0;
    }
    else 
    {
        int h=0,d=0;
        for(int i=1;i<=n;i++)
        {
            if(a[i]>r)h=h+a[i]-r;
            if(a[i]<l)d=d+l-a[i];         //就是这个操作,不理解;
        }
        cout<<max(h,d)<<endl;
    }
    return 0;
}    

 

acm未解之谜-洛谷P1109学生分组

标签:gpo   +=   学生   post   都对   ++   i++   nbsp   for   

原文地址:https://www.cnblogs.com/ckxkexing/p/8453982.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!