zoukankan      html  css  js  c++  java
  • Milk(sort+结构体)

    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.
     1 #include<cstdio>
     2 #include<algorithm>
     3 using namespace std;
     4 struct nam
     5 {
     6     int v;
     7     float y;
     8     char a[500];
     9 } milk[200];
    10 bool f(nam a,nam b)
    11 {
    12     double ka,kb;
    13     int da,db;
    14     da=(a.v/200)>5?5:(a.v/200);
    15     db=(b.v/200)>5?5:(b.v/200);
    16     ka=a.y*1.0/da;
    17     kb=b.y*1.0/db;
    18     if(ka!=kb) return ka<kb;
    19     else
    20     return a.v>b.v;
    21     
    22     
    23 }
    24 int main()
    25 {
    26     int t,n;
    27     scanf("%d",&t);
    28     while(t--)
    29     {
    30         scanf("%d",&n);
    31         for(int i=0;i<n;i++)
    32         {
    33         scanf("%s %f %d",&milk[i].a,&milk[i].y,&milk[i].v);
    34         if(milk[i].v<200) 
    35         {
    36             i--;
    37             n--;
    38         }
    39     
    40         }
    41         sort(milk,milk+n,f);
    42         printf("%s
    ",milk[0].a);
    43         
    44    }
    45 }
    ——将来的你会感谢现在努力的自己。
  • 相关阅读:
    Access restriction: The type * is not accessible due to restrict,报错问题,只试过第二种,OK。
    Java读写Properties文件
    MyBatis学习4---使用MyBatis_Generator生成Dto、Dao、Mapping
    Mybatis 3+Mysql 实现批量插入
    Java访问MySQL数据库的SqlHelper类以及测试程序
    sun.net.ftp.FtpClient(java访问/操作ftp)
    java通过ftp方式读取文件,并解析入库
    Linux CPU 上下文切换
    Perl-DBI
    Perl文件句柄和文件描述符
  • 原文地址:https://www.cnblogs.com/yexiaozi/p/5685743.html
Copyright © 2011-2022 走看看