zoukankan      html  css  js  c++  java
  • Milk

    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
    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<cstring>
    #include<algorithm>
    using namespace std;
    struct node{
    	 char name[51];
    	double  qian,price;
    	  int  v;
    }s[1001];
    bool cmp(struct node a,struct node b)
    {
         if(a.price!=b.price) 
    	 return a.price  <b.price ;
         else
         if(a.qian !=b.qian )
         return a.qian <b.qian ;
         else
         return a.v>b.v ;
    }
    int main ()
    {
    	int t,n;
    	scanf("%d",&t);
    	while(t--)		
    	{
    	       scanf("%d",&n);
    	      for(int i=0;i<n;i++)
    	     {
    			scanf("%s%lf%d",&s[i].name ,&s[i].qian ,&s[i].v );
    			if(s[i].v <200)
    			{
    				i--;
    				n--;
    			}
    			
    	     }
    		  for(int i=0;i<n;i++)
    		  {
    		  	if(s[i].v <1000)
    			{
    				s[i].price =s[i].qian /(s[i].v /200);
    			}
    			else
    			{
    				s[i].price =s[i].qian /5;
    			}
    		  }
    		 
    	     sort(s,s+n,cmp);
    	   printf("%s
    ",s[0].name);
    	}	
    	return 0;
    }


  • 相关阅读:
    [多项式算法](Part 1)FFT 快速傅里叶变换 学习笔记
    [多项式算法](Part 4)FWT 快速沃尔什变换 学习笔记
    [多项式算法](Part 2)NTT 快速数论变换 学习笔记
    [多项式算法](Part 5)分治FFT 学习笔记
    [HDU4316]Mission Impossible(计算几何/凸包/半平面交)
    NOI2019 游记 | 在NOI寻求AC是否搞错了什么?
    [Android] Activity的四种launchMode
    [Android] CardView的使用及兼容
    [Android] 记录相对位置布局
    [Android] ConstraintLayout
  • 原文地址:https://www.cnblogs.com/kingjordan/p/12027211.html
Copyright © 2011-2022 走看看