【杭电1070】milk (sort+结构体)

来源:互联网 发布:win 2008 如何打开端口 编辑:程序博客网 时间:2024/04/27 10:00
Milk(sort+结构体)
Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u
Submit Status

Description

Ignatius drinks milk everyday, now he is in the supermarket and he wants to choose a bottle of milk. There are many kinds of milk in the supermarket, so Ignatius wants to know which kind of milk is the cheapest. 

Here are some rules: 
1. Ignatius will never drink the milk which is produced 6 days ago or earlier. That means if the milk is produced 2005-1-1, Ignatius will never drink this bottle after 2005-1-6(inclusive). 
2. Ignatius drinks 200mL milk everyday. 
3. If the milk left in the bottle is less than 200mL, Ignatius will throw it away. 
4. All the milk in the supermarket is just produced today. 

Note that Ignatius only wants to buy one bottle of milk, so if the volumn of a bottle is smaller than 200mL, you should ignore it. 
Given some information of milk, your task is to tell Ignatius which milk is the cheapest.

Input

The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow. 
Each test case starts with a single integer N(1<=N<=100) which is the number of kinds of milk. Then N lines follow, each line contains a string S(the length will at most 100 characters) which indicate the brand of milk, then two integers for the brand: P(Yuan) which is the price of a bottle, V( mL) which is the volume of a bottle.

Output

For each test case, you should output the brand of the milk which is the cheapest. If there are more than one cheapest brand, you should output the one which has the largest volume.

Sample Input

22Yili 10 500Mengniu 20 10004Yili 10 500Mengniu 20 1000Guangming 1 199Yanpai 40 10000 

Sample Output

MengniuMengniu 

Hint

In the first case, milk Yili can be drunk for 2 days, it costs 10 Yuan. Milk Mengniu can be drunk for 5 days, it costs 20 Yuan. So Mengniu is the cheapest.In the second case, milk Guangming should be ignored. Milk Yanpai can be drunk for 5 days, but it costs 40 Yuan. So Mengniu is the cheapest.
题解:有几种牛奶,价格和总量不一样,要选择一种满足以下条件:不少于200;五天内喝完,每天200,不足200直接扔掉,并且尽量选择价钱低的。    
注意比较性价比。//即总量/价格
价格/需要喝的天数
123456789101112131415161718192021222324252627282930313233343536373839404142
#include<stdio.h>#include<algorithm>#include<string.h>using namespace std;struct milk{char name[120];double p;注意性价定义为double型int v;}a[120];bool cmp(milk b,milk c){if(b.p==c.p)return b.v>c.v;elsereturn b.p<c.p;}int main(){int T,m,i;scanf("%d",&T);while(T--){scanf("%d",&m);for(i=0;i<m;i++){scanf("%s %lf %d",&a[i].name,&a[i].p,&a[i].v);if(a[i].v<200)少于200直接舍掉i--,m--;else {if(a[i].v/200<=5)a[i].p=a[i].p/(a[i].v/200);elsea[i].p=a[i].p/5;}}sort(a,a+m,cmp);printf("%s\n",a[0].name);}return 0;}

0 0