• USACO 1.3 milk


    Mixing Milk

    Since milk packaging is such a low margin business, it is important to keep the price of the raw product (milk) as low as possible. Help Merry Milk Makers get the milk they need in the cheapest possible manner.

    The Merry Milk Makers company has several farmers from which they may buy milk, and each one has a (potentially) different price at which they sell to the milk packing plant. Moreover, as a cow can only produce so much milk a day, the farmers only have so much milk to sell per day. Each day, Merry Milk Makers can purchase an integral amount of milk from each farmer, less than or equal to the farmer's limit.

    Given the Merry Milk Makers' daily requirement of milk, along with the cost per gallon and amount of available milk for each farmer, calculate the minimum amount of money that it takes to fulfill the Merry Milk Makers' requirements.

    Note: The total milk produced per day by the farmers will be sufficient to meet the demands of the Merry Milk Makers.

    PROGRAM NAME: milk

    INPUT FORMAT

    Line 1: Two integers, N and M. 
    The first value, N, (0 <= N <= 2,000,000) is the amount of milk that Merry Milk Makers wants per day. The second, M, (0 <= M <= 5,000) is the number of farmers that they may buy from. 
    Lines 2 through M+1: The next M lines each contain two integers, Pi and Ai
    Pi (0 <= Pi <= 1,000) is price in cents that farmer i charges.
    Ai (0 <= Ai <= 2,000,000) is the amount of milk that farmer i can sell to Merry Milk Makers per day.

    SAMPLE INPUT (file milk.in)

    100 5
    5 20
    9 40
    3 10
    8 80
    6 30
    

    OUTPUT FORMAT

    A single line with a single integer that is the minimum price that Merry Milk Makers can get their milk at for one day.

    SAMPLE OUTPUT (file milk.out)

    630
    

    简单题,直接先按照价格排序,然后一个个加,知道超过了N;
    View Code
     1 /*
     2 ID: shuyang1
     3 PROG: milk
     4 LANG: C++
     5 */
     6 #include <iostream>
     7 #include <stdio.h>
     8 #include <algorithm>
     9 using namespace std;
    10 
    11 struct Node{
    12     int price;
    13     int mount;
    14 
    15 };
    16 
    17 bool cmp(Node a,Node b)
    18 {
    19     return a.price<=b.price;
    20 }
    21 
    22 int main()
    23 {
    24     freopen("milk.in","r",stdin);
    25     freopen("milk.out","w",stdout);
    26     int N,M;
    27     int i,j,k;
    28     Node farm[5005];
    29     cin>>N>>M;
    30     for(i=0;i<M;i++)
    31         cin>>farm[i].price>>farm[i].mount;
    32     sort(farm,farm+M,cmp);
    33     int num=0,money=0;
    34     for(i=0;i<M;i++)
    35     {
    36         if(farm[i].mount+num<N)
    37         {
    38             num+=farm[i].mount;
    39             money+=farm[i].price*farm[i].mount;
    40         }
    41         else if(farm[i].mount+num>=N)
    42         {
    43             money+=(N-num)*farm[i].price;
    44             break;
    45         }
    46     }
    47     cout<<money<<endl;
    48     return 0;
    49 }
  • 相关阅读:
    解决使用OCI连接oracle LNK2019: 无法解析的外部符号的问题
    VS2010下配置OCI编程
    OpenLayers简单介绍以及简单实例
    浏览器的标准模式与怪异模式的设置与区分方法
    解决ie7不支持after、before的方法
    ie7兼容after、before的方法
    【移动端适配】适配1个像素的border
    js实现对table的增加行和删除行的操作
    css3线性渐变:linear-gradient
    使用iScroll实现上、下滑动刷新和加载更多数据
  • 原文地址:https://www.cnblogs.com/shenshuyang/p/2500203.html
Copyright © 2020-2023  润新知