zoukankan      html  css  js  c++  java
  • HDUOJ----1170Milk

    Milk

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


    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.
     
    思路: 没有小于200ml的忽视,超过1000/200》5的当做5天来处理,优先比较价格,在比较体积....
    代码:
     1 #include<iostream>
     2 #include<vector>
     3 #include<string>
     4 #include<algorithm>
     5 using namespace std;
     6 typedef struct
     7 {
     8     string name;
     9     int day;
    10     int pri;
    11 }go;
    12 
    13 bool cmp(go const a,go const b)
    14 {
    15     if(a.pri==b.pri)
    16     return a.day>b.day?1:0;
    17     return a.pri<b.pri?1:0;
    18 
    19 
    20 }
    21 int main()
    22 {
    23     vector<go>st;
    24     go tem;
    25     int t,n;
    26     cin>>t;
    27     while(t--)
    28     {
    29         cin>>n;
    30         st.clear();
    31         while(n--)
    32         {
    33             cin>>tem.name>>tem.pri>>tem.day;    
    34             if(tem.day>200)                    //小于1就忽略
    35             {
    36                 if(tem.day>1000) tem.pri/=5;
    37                 else 
    38                   tem.pri/=(tem.day/200);
    39                 st.push_back(tem);
    40             }
    41         }
    42         sort(st.begin(),st.end(),cmp);
    43         vector<go>::iterator it=st.begin();
    44         cout<<(*it).name<<endl;    
    45     }
    46     return 0;
    47 }
    View Code
  • 相关阅读:
    day70 django中间件
    day69 cookie与session
    day68 form组件
    day67 前后端数据交互
    day65 django进阶(1)
    day64 django模型层
    day63 django入门(4)
    day62 作业
    Python正课142 —— DRF 进阶3 路由与认证
    一文搞懂什么是IaaS, PaaS和SaaS
  • 原文地址:https://www.cnblogs.com/gongxijun/p/3504908.html
Copyright © 2011-2022 走看看