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

2
2
Yili 10 500
Mengniu 20 1000
4
Yili 10 500
Mengniu 20 1000
Guangming 1 199
Yanpai 40 10000

Sample Output

Mengniu
Mengniu

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.
 #include<cstdio>
#include<algorithm>
using namespace std;
struct nam
{
int v;
float y;
char a[];
} milk[];
bool f(nam a,nam b)
{
double ka,kb;
int da,db;
da=(a.v/)>?:(a.v/);
db=(b.v/)>?:(b.v/);
ka=a.y*1.0/da;
kb=b.y*1.0/db;
if(ka!=kb) return ka<kb;
else
return a.v>b.v; }
int main()
{
int t,n;
scanf("%d",&t);
while(t--)
{
scanf("%d",&n);
for(int i=;i<n;i++)
{
scanf("%s %f %d",&milk[i].a,&milk[i].y,&milk[i].v);
if(milk[i].v<)
{
i--;
n--;
} }
sort(milk,milk+n,f);
printf("%s\n",milk[].a); }
}

最新文章

  1. HDU 1564 Play a game(巴什博弈)
  2. (地址)Spring Data Solr
  3. 前端面试题2016--CSS
  4. node学习笔记(三)
  5. JavaScript对异常的处理
  6. 360极速浏览器UA怪异以及如何用js判断360浏览器
  7. MySQL(5):数据表操作
  8. mysql删除和修改数据报错1175
  9. SpecFlow
  10. Linux知识积累(2)dirname的使用方法
  11. personalblog
  12. 如何终止线程的运行(C/C++)
  13. SpringBoot配置Aop demo
  14. 三种常用的js数组去重方法
  15. 《Java程序猿面试笔试宝典》之Java变量命名有哪些规则
  16. HDU 2307 贪心之活动安排问题
  17. Kail Linux渗透测试教程之网络扫描和嗅探工具Nmap
  18. 【bzoj4552】排序
  19. 通过CMD命令设置网络参数
  20. Android使用Fragment来实现TabHost的功能

热门文章

  1. hdu 2189 悼念512汶川大地震遇难同胞——来生一起走 基础母函数
  2. 贪心+拓扑排序 AOJ 2456 Usoperanto
  3. Magento 缓存机制简析
  4. iOS Getter 和Setter 注册xibcell
  5. 做OJ项目时遇到的坑
  6. 在phpnow中配置phpunit
  7. Angular和SAP C4C的事件处理队列
  8. 原创:mysql下载 实战 最强最全的无脑白痴版 给小白的爱
  9. yii 和 zend studio 集成
  10. 微信小程序---代码构成