HDOJ 1070 Milk(水题,考英文的)

举报
谙忆 发表于 2021/05/27 18:32:32 2021/05/27
【摘要】 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 wan...

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.

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

HintIn 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.

首先要确认的是,每盒奶只喝五天啊。
倘若两种奶的日花销相同,那么就只挑量大的那盒买。

有2种方法,一种是对每天的开销来求的:如下:

import java.util.Scanner;
//按照每天的开销来算
public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int t = sc.nextInt(); while(t-->0){ int n = sc.nextInt(); sc.nextLine(); String[] strs = new String[n]; for(int i=0;i<n;i++){ strs[i]=sc.nextLine(); }
// for(int i=0;i<n;i++){
// System.out.println(strs[i]);
// } String[][] milk = new String[n][3]; int num[][] = new int[n][2]; for(int i=0;i<n;i++){ milk[i]=strs[i].split(" "); num[i][0]=Integer.parseInt(milk[i][1]); num[i][1]=Integer.parseInt(milk[i][2]); if(num[i][1]>1000){ num[i][1]=1000; } } int k=0; int day=0; day=0; double vp = 100000000; for(int i=0;i<n;i++){ if(num[i][1]<200){ continue; } day=num[i][1]/200; if((num[i][0]*1.0/day*1.0)<vp){ k=i; vp=num[i][0]*1.0/day*1.0; } if((num[i][0]*1.0/day*1.0)==vp){ if(Integer.parseInt(milk[i][2])>Integer.parseInt(milk[k][2])){ k=i; vp=num[i][0]*1.0/day*1.0; } } } System.out.println(milk[k][0]); } }

}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52

还有一种是按照实际的没ml的价格来算的:

import java.util.Scanner;

public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int t = sc.nextInt(); while(t-->0){ int n = sc.nextInt(); sc.nextLine(); String[] strs = new String[n]; for(int i=0;i<n;i++){ strs[i]=sc.nextLine(); }
// for(int i=0;i<n;i++){
// System.out.println(strs[i]);
// } String[][] milk = new String[n][3]; int num[][] = new int[n][2]; for(int i=0;i<n;i++){ milk[i]=strs[i].split(" "); num[i][0]=Integer.parseInt(milk[i][1]); num[i][1]=Integer.parseInt(milk[i][2]); if(num[i][1]>1000){ num[i][1]=1000; } } int k=0; double vp = -100; for(int i=0;i<n;i++){ if(num[i][1]<200){ continue; } while(num[i][1]%200!=0){ num[i][1]--; } double p =num[i][1]*1.0/num[i][0]*1.0; if(p>vp){ k=i; vp=p; } if(p==vp){ if(Integer.parseInt(milk[i][2])>Integer.parseInt(milk[k][2])){ k=i; vp=p; } } } System.out.println(milk[k][0]); } }

}
  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52

文章来源: chenhx.blog.csdn.net,作者:谙忆,版权归原作者所有,如需转载,请联系作者。

原文链接:chenhx.blog.csdn.net/article/details/51029615

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。