码迷,mamicode.com
首页 > 其他好文 > 详细

uva 1149:Bin Packing(贪心)

时间:2014-09-24 01:34:05      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   div   sp   c   log   

题意:给定N物品的重量,背包容量M,一个背包最多放两个东西。问至少多少个背包。

思路:贪心,最大的和最小的放。如果这样都不行,那最大的一定孤独终生。否则,相伴而行。

代码:

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;

#define N 100100

int a[N];

int main() {
    int t;
    scanf("%d", &t);
    bool isfirst = true;
    while (t--) {
        if (isfirst) isfirst = false;
        else puts("");
        int n;
        scanf("%d", &n);
        int l;
        scanf("%d", &l);

        for (int i = 0; i < n; i++) {
            scanf("%d", &a[i]);
        }
        sort(a,a+n);

        int st = 0;
        int ed = n-1;
        int cnt = 0;
        while (st <= ed) {
            if (st != ed){
                if (a[st]+a[ed] <= l) {
                    st++;
                    ed--;
                    cnt++;
                } else {
                    ed--;
                    cnt++;
                }
            } else {
                cnt++;
                ed--;
            }
        }

        printf("%d\n", cnt);
    }
    return 0;
}

 

uva 1149:Bin Packing(贪心)

标签:style   blog   color   io   for   div   sp   c   log   

原文地址:http://www.cnblogs.com/shinecheng/p/3989436.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!