zoukankan      html  css  js  c++  java
  • 【hdu 1070 Milks】

    Milk

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 7951    Accepted Submission(s): 1893


    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.
     
    Author
    Ignatius.L
     
     
     1 // Project name : 1070 ( Milks ) 
     2 // File name    : main.cpp
     3 // Author       : Izumu
     4 // Date & Time  : Mon Jul  9 17:00:51 2012
     5 
     6 
     7 #include <iostream>
     8 #include <vector>
     9 #include <algorithm>
    10 using namespace std;
    11 
    12 struct Milk
    13 {
    14     int volume;
    15     int price;
    16     int days;
    17     string name;
    18     void CSetValue(string _name, int _price, int _volume)
    19     {
    20         name   = _name;
    21         price  = _price;
    22         volume = _volume;
    23         days   = _volume / 200;
    24         if (days > 5)
    25         {
    26             days = 5;
    27         }
    28     }
    29 };
    30 
    31 bool operator < (const Milk& lh, const Milk& rh)
    32 {
    33     if (lh.price * rh.days < rh.price * lh.days)
    34     {
    35         return true;
    36     }
    37     return (lh.price * rh.days == rh.price * lh.days && lh.volume > rh.volume);
    38 }
    39 int main()
    40 {
    41     int t, n, i, p, v;
    42     string name;
    43     vector<Milk> milks;
    44     Milk tmp;
    45     cin >> t;
    46     while (t--)
    47     {
    48         cin >> n;
    49         milks.clear();
    50         for (int i = 0; i < n; i++)
    51         {
    52             cin >> name >> p >> v;
    53             if (v < 200)
    54             {
    55                 continue;
    56             }
    57             tmp.CSetValue(name, p, v);
    58             milks.push_back(tmp);
    59         }
    60         sort(milks.begin(), milks.end());
    61         cout << milks.front().name << endl;
    62     }
    63     return 0;
    64 }
    65 
    66 // end 
    67 // ism 
  • 相关阅读:
    Windows Server 2008 R2 Enterprise 安装.NET Framework 4.0
    layer弹层content写错导致div复制了一次,导致id失效 $().val() 获取不到dispaly:none div里表单的值
    IIS 注册.NET Framework 4.0 命令
    记一次神秘又刺激的装机
    HTTP Error 503. The service is unavailable.
    找到多个与名为“Home”的控制器匹配的类型。
    Discuz论坛广告横幅大图在百度app内无法显示,百度app默认开启了广告屏蔽
    解决Antimalware Service Executable CPU,内存占用高的问题
    Discuz 部署,500 – 内部服务器错误。 您查找的资源存在问题,因而无法显示。
    IIS部署网站只有首页能访问,其他链接失效/运行.net+Access网站-可能原因:IIS未启用32位应用程序模式
  • 原文地址:https://www.cnblogs.com/ismdeep/p/2583036.html
Copyright © 2011-2022 走看看