练习一1010

 The local toy store sells small fingerpainting kits with between three and twelve 50ml bottles of paint, each a different color. The paints are bright and fun to work with, and have the useful property that if you mix X ml each of any three different colors, you get X ml of gray. (The paints are thick and "airy", almost like cake frosting, and when you mix them together the volume doesn't increase, the paint just gets more dense.) None of the individual colors are gray; the only way to get gray is by mixing exactly three distinct colors, but it doesn't matter which three. Your friend Emily is an elementary school teacher and every Friday she does a fingerpainting project with her class. Given the number of different colors needed, the amount of each color, and the amount of gray, your job is to calculate the number of kits needed for her class.
 

Input
The input consists of one or more test cases, followed by a line containing only zero that signals the end of the input. Each test case consists of a single line of five or more integers, which are separated by a space. The first integer N is the number of different colors (3 <= N <= 12). Following that are N different nonnegative integers, each at most 1,000, that specify the amount of each color needed. Last is a nonnegative integer G <= 1,000 that specifies the amount of gray needed. All quantities are in ml. <br>
 

Output
For each test case, output the smallest number of fingerpainting kits sufficient to provide the required amounts of all the colors and gray. Note that all grays are considered equal, so in order to find the minimum number of kits for a test case you may need to make grays using different combinations of three distinct colors.
 

Sample Input
3 40 95 21 0
7 25 60 400 250 0 60 0 500
4 90 95 75 95 10
4 90 95 75 95 11
5 0 0 0 0 0 333
0
 

Sample Output
2
8
2
3
4
 

Statistic | Submit | Back 
思路;
先准备好灰色以外的颜色,然后把剩余颜色从大到小排序,前三个混合为灰色,若不足三个再买一包直到凑够灰色。
代码:
 #include<iostream>
#include<algorithm>
using namespace std;
bool cmp(int a,int b)
{
return a>=b;
}
int f(int a)
{
int b;
if(a<50) b=1;
if(a>=50&&a%50==0) b=a/50;
if(a>=50&&a%50!=0) b=a/50+1;
return b;
}
int main()
{
int n;
while(cin>>n)
{
int m,d=0;
if(n==0) break;
int a[1000];
for(int i=0;i<n;i++)
cin>>a[i];
cin>>m;
int t=0;
for(int i=0;i<n;i++)
if(a[i]!=0) t++;
if(t==0&&m==0)
{
cout<<"0"<<endl;
continue;
}//判断如果想要的颜色数全部为0,则输出0。
int max=f(a[0]);
for(int i=1;i<n;i++)
if(f(a[i])>max) max=f(a[i]);//若不算灰色则最少需要多少包。
int b[1000];
for(int i=0;i<n;i++)
b[i]=50*max-a[i];
for(int c=0;c<m;)
{
sort(b,b+n,cmp);
if(b[2]==0)
{
   for(int i=0;i<n;i++)
    b[i]+=50;
    d++;
}//若第三大的数为0则需要再买一包。
else
{b[0]--;b[1]--;b[2]--;c++;}
}
cout<<d+max<<endl;
}
return 0;

你可能感兴趣的:(练习一1010)