zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    第08组 Alpha冲刺(4/6)
    2019 SDN阅读作业
    第08组 Alpha冲刺(3/6)
    2019 SDN上机第3次作业
    第08组 Alpha冲刺(2/6)
    答疑
    八、对抗样本1
    九、产生和防御对抗样本的新方法 | 分享总结--廖方舟(论文11)
    02-NLP-08-条件随机场与应用
    02-NLP-07-词向量及相关应用
  • 原文地址:https://www.cnblogs.com/shenshuyang/p/2500203.html
Copyright © 2011-2022 走看看