首页 > 代码库 > hdu 1070(结构体排序)
hdu 1070(结构体排序)
Milk
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 13639 Accepted Submission(s): 3328
Problem 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.
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.
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
MengniuMengniuHintIn 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.
Author
Ignatius.L
难点:关于sort排序的不能得心应手
时间:8.8
做题人:洛可可
主要考查的是结构体的二级排序,并且是double 型的数据不能直接 等号表示,两者相等,因为牵扯到精度的问题。
二级排序的sort代码如下:
<span style="font-size:14px;">#include<stdio.h>#include<algorithm>using namespace std;struct milk{ char log[110]; int p; int v; double xjb;}a[110];int cmp(milk x,milk y){ if(x.xjb!=y.xjb) return x.xjb<y.xjb; return x.v>y.v;}int main(){ int n,i,m; scanf("%d",&n); while(n--) { scanf("%d",&m); for(i=0;i<m;i++) { scanf("%s%d%d",a[i].log,&a[i].p,&a[i].v); //getchar(); if(a[i].v>1200) a[i].xjb=a[i].p*1.0/1200; else a[i].xjb=a[i].p*1.0/a[i].v; } sort(a,a+m,cmp); for(i=0;i<m;i++) { if(a[i].v<200) continue; else { printf("%s\n",a[i].log); break; } } } return 0;}</span>
<span style="font-size:14px;">#include<stdio.h>#include<stdlib.h>#include<string.h>struct milk{ char log[110]; int p; int v; double xjb;}a[110];int cmp(const void *a,const void *b){ if((*(milk *)a).xjb>(*(milk *)b).xjb) return 1; else if(((*(milk *)a).xjb<(*(milk *)b).xjb)) return -1; else return (((milk *)a)->v)<(((milk *)b)->v);}int main(){ int t,i,n; scanf("%d",&t); while(t--) { scanf("%d",&n); getchar(); for(i=0;i<n;i++) { scanf("%s %d %d",a[i].log,&a[i].p,&a[i].v); getchar(); if(a[i].v>1200) a[i].xjb=a[i].p*1.0/1200;</span>
<span style="font-size:14px;"> else a[i].xjb=a[i].p*1.0/a[i].v; } qsort(a,n,sizeof(a[0]),cmp); for(i=0;i<n;i++) { if(a[i].v<200) continue; else { printf("%s\n",a[i].log); break; } } } return 0;}</span>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。