博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Milk 结构体
阅读量:6273 次
发布时间:2019-06-22

本文共 2754 字,大约阅读时间需要 9 分钟。

                                                                                                 Milk

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 200 ml milk everyday.
3. If the milk left in the bottle is less than 200 ml, 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 volume of a bottle is smaller than 200 ml, 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
using namespace std;struct milk{ int vol, price; double cost; char brand[101];}a[100], b;int main(){ int t; cin>>t; while(t--){ int n, i, p=0; cin>>n; for(i=0; i
>b.brand>>b.price>>b.vol; if(b.vol < 200) continue; else { a[p] = b; if(a[p].vol >= 1000) a[p].cost = a[p].price*1.0/5; else { a[p].cost = a[p].price*1.0 / (a[p].vol/200); } p++; } } for(i=0; i
i; j--) if(a[j-1].cost > a[j].cost || (a[j-1].cost==a[j].cost && a[j].vol>a[j-1].vol)){ struct milk tmp; tmp = a[j]; a[j] = a[j-1]; a[j-1] = tmp; } cout<
<
 

转载于:https://www.cnblogs.com/Genesis2018/p/8304838.html

你可能感兴趣的文章
检索 COM 类工厂中 CLSID 为{00024500-0000-0000-C000-000000000046} 的组件时失败,原因是出现以下错误: 80070005。...
查看>>
测试java的父子类化
查看>>
HDOJ 1008
查看>>
安装thrift出现的一些问题
查看>>
makefile编写---单个子目录编译模板
查看>>
Oracle DB_LINK如何使用
查看>>
cv resource
查看>>
关于加快INSERT语句执行速度和HINT /*+ append */及/*+ append nologging */的使用
查看>>
JDK源代码学习系列07----Stack
查看>>
firefox
查看>>
PS批处理的使用
查看>>
七天学会ASP.NET MVC (一)——深入理解ASP.NET MVC 【转】
查看>>
Quartz作业调度框架
查看>>
腾讯云下安装 nodejs + 实现 Nginx 反向代理
查看>>
js-权威指南学习笔记13
查看>>
《超级时间整理术》晨读笔记
查看>>
Spring Boot 2.0(二):Spring Boot 2.0尝鲜-动态 Banner
查看>>
Delphi IdTCPClient IdTCPServer 点对点传送文件
查看>>
Delphi中使用ActiveX的一些心得
查看>>
QT5.8.0+MSVC2015安装以及环境配置(不需要安装VS2015)
查看>>