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

10-18 noip提高组模拟赛(codecomb)T2贪心

时间:2014-10-19 14:17:09      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:blog   io   os   for   sp   div   on   log   amp   

T2:找min:一直找最小的那个,直到a[i]-x+1小于0,就找次小的,以此类推;

求max,也是一样的,一直到最大的那个,直到次大的比之前最大的大,就找次大的;

这个模拟,可以用上priority_queue;

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
#include <queue>
using namespace std;
const int maxn=1000001;
int n,m;
int a[maxn];
long long minx,maxx;
priority_queue<int> q;

int main(){
    scanf("%d%d",&n,&m);
    for(int i=1;i<=n;i++){
    	scanf("%d",&a[i]);
    	q.push(a[i]);
    }
    sort(a+1,a+n+1);
    int temp=1;
	for(int i=1;i<=m;i++){
    	int t=q.top();
    	q.pop();
    	maxx+=t;
    	q.push(t-1);
    	while(!a[temp]) temp++;
    	minx+=a[temp];
    	a[temp]--;
    }
    cout<<maxx<<" "<<minx;
	return 0;
}

 

10-18 noip提高组模拟赛(codecomb)T2贪心

标签:blog   io   os   for   sp   div   on   log   amp   

原文地址:http://www.cnblogs.com/polebug/p/4034822.html

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