前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >贪心-HDU 1009

贪心-HDU 1009

作者头像
ACM算法日常
发布2018-08-07 19:39:41
2660
发布2018-08-07 19:39:41
举报
文章被收录于专栏:ACM算法日常ACM算法日常

描述:

FatMouse prepared M pounds of cat food, ready to trade with the cats guarding the warehouse containing his favorite food, JavaBean. The warehouse has N rooms. The i-th room contains J[i] pounds of JavaBeans and requires F[i] pounds of cat food. FatMouse does not have to trade for all the JavaBeans in the room, instead, he may get J[i]* a% pounds of JavaBeans if he pays F[i]* a% pounds of cat food. Here a is a real number. Now he is assigning this homework to you: tell him the maximum amount of JavaBeans he can obtain.

说明:

一共有n个房子,每个房子里有老鼠喜欢吃的javabeans,但是每个房间里的javabeans的价格不一样。老鼠用m元,问m元最多可以卖多少javabeans,其中每个房间里的javabeans可以被分割。

输入:

The input consists of multiple test cases. Each test case begins with a line containing two non-negative integers M and N. Then N lines follow, each contains two non-negative integers J[i] and F[i] respectively. The last test case is followed by two -1's. All integers are not greater than 1000.

输出:

For each test case, print in a single line a real number accurate up to 3 decimal places, which is the maximum amount of JavaBeans that FatMouse can obtain.

源码:

代码语言:javascript
复制
#include<stdio.h>
#include <stdlib.h>

//http://acm.hdu.edu.cn/showproblem.php?pid=1009

typedef struct trade_s {
    //注意这里只能是整数
    int javaBean, catFood;
    double normalize;
} trade_t;

static trade_t w[1100];

//用qsort函数必须注意这个函数返回的是int类型,所以这里会返回1和-1
int cmp(const void * x, const void * y) {
    //注意这里直接用减法并且返回1和-1
    return ((trade_t*)x)->normalize - ((trade_t*)y)->normalize > 0 ? -1 : 1;
}

int main() {
    //n是行数,m是总重量
    int n, m, i;
    double sum;

    while (scanf("%d %d", &m, &n)) {
        //输入-1结束
        if (m == -1 && n == -1) break;
        //重置sum
        sum = 0;
        //输入n行数据
        for (i = 0; i <= n - 1; i++) {
            //得到javaBean需要付出catFood
            scanf("%d %d", &w[i].javaBean, &w[i].catFood);
            //计算单价购买量
            w[i].normalize = ((double)w[i].javaBean) / w[i].catFood;
        }
        //排序
        qsort(w, n, sizeof(trade_t), cmp);

        for (i = 0; i < n; i++) {
            //如果支付得起,则购买
            if (m >= w[i].catFood) {
                printf("food %d %d\n", w[i].catFood, w[i].javaBean);
                //增加获得的重量
                sum = sum + w[i].javaBean;
                //减去付出
                m -= w[i].catFood;
            } else {
                //支付不起,以单价购买量乘以重量
                sum = sum + w[i].normalize * m;
                break;
            }
        }
        printf("%.3lf\n", sum);
    }
    return 0;
}
本文参与 腾讯云自媒体分享计划,分享自微信公众号。
原始发表:2017-12-14,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 ACM算法日常 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档