Educational Codeforces Round 21 808C Tea Party 【贪心算法】

Educational Codeforces Round 21 808C Tea Party


C. Tea Party
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Polycarp invited all his friends to the tea party to celebrate the holiday. He has n cups, one for each of his n friends, with volumes a1, a2, ..., an. His teapot stores w milliliters of tea (w ≤ a1 + a2 + ... + an). Polycarp wants to pour tea in cups in such a way that:

  • Every cup will contain tea for at least half of its volume
  • Every cup will contain integer number of milliliters of tea
  • All the tea from the teapot will be poured into cups
  • All friends will be satisfied.

Friend with cup i won't be satisfied, if there exists such cup j that cup i contains less tea than cup j but ai > aj.

For each cup output how many milliliters of tea should be poured in it. If it's impossible to pour all the tea and satisfy all conditions then output -1.

Input

The first line contains two integer numbers n and w (1 ≤ n ≤ 100).

The second line contains n numbers a1, a2, ..., an (1 ≤ ai ≤ 100).

Output

Output how many milliliters of tea every cup should contain. If there are multiple answers, print any of them.

If it's impossible to pour all the tea and satisfy all conditions then output -1.

Examples
input
2 10
8 7
output
6 4 

题解: 先将数组按大小  大到小排序

           然后每个杯子倒一半 把剩下的继续从大到小依次到茶

           直到倒完  再排序到原来的样子

#include <stdio.h>
#include <bits/stdc++.h>
#define mod 1000000007
typedef long long ll;
using namespace std;
class Tea{
	public:
		int a,w,id;
};
Tea t[105];
int n,w;
int cmp1(Tea a,Tea b){ return a.a>b.a;}
int cmp2(Tea a,Tea b){ return a.id<b.id;}
int main(){ 
	cin>>n>>w;
	for(int i=0;i<n;i++){
		cin>>t[i].a;
		t[i].id=i;  
	}
	sort(t,t+n,cmp1);  //杯子大到小排序
	for(int i=0;i<n;i++){
		w-=(t[i].a+1)/2; //每个杯子至少装一半
		t[i].w=(t[i].a+1)/2;   //保存已经装了多少   
	}
	for(int i=0;i<n;i++){
		int x=t[i].a-t[i].w;
		if(w>=x){
			t[i].w+=x;w-=x;
		}else if(w>0){
			t[i].w+=w;w=0;
		}else
			break;
	}
	sort(t,t+n,cmp2);  //按照id 排序 排回原位
	if(w<0) cout<<-1;
	else
	for(int i=0;i<n;i++)
		cout<<t[i].w<<" "; 
    return 0;
} 
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值