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

UVA 1149 Bin Packing 装箱(贪心,水)

时间:2015-08-02 13:14:07      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:

每次选最大的物品和最小的物品放一起,如果放不下,大物体孤独终生,否则相伴而行。。。

#include<bits/stdc++.h>
using namespace std;
const int maxn = 1e5+42;
int a[maxn];

template<class T>
inline void scan_d(T *ret)
{
    char c;*ret=0;
    while((c=getchar())<0||c>9);
    while(c>=0&&c<=9) { *ret = *ret*10+(c-0); c = getchar();}
}

int main()
{
    int T;  scan_d(&T);
    while(T--){
        int n,L; scan_d(&n); scan_d(&L);
        for(int i = 0; i < n; i++) scan_d(a+i);
        sort(a,a+n);
        int i = 0,j = n-1;
        int ans = n;

        while(i<j){
            if(a[i] <= L-a[j]){
               i++; j--; ans--;
            } else {
                j--;
        }

        printf("%d\n",ans);
        if(T)putchar(\n);
    }
    return 0;
}

 

UVA 1149 Bin Packing 装箱(贪心,水)

标签:

原文地址:http://www.cnblogs.com/jerryRey/p/4695359.html

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