UVa 1149 装箱

Posted 谦谦君子,陌上其华

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVa 1149 装箱相关的知识,希望对你有一定的参考价值。

https://vjudge.net/problem/UVA-1149

题意:给定N个物品的重量和背包的容量,同时要求每个背包最多装两个物品。求至少需要的背包数。

思路:很简单的贪心。每次将最轻的和最重的放一个背包里,如果放不下,则只放一个最重的。

 1 #include<iostream>  
 2 #include<algorithm>
 3 using namespace std;
 4 
 5 const int maxn = 100000 + 5;
 6 
 7 int n, m;
 8 int a[maxn];
 9 int ans;
10 
11 void solve()
12 {
13     ans = 0;
14     sort(a, a + n);
15     int L = 0, R = n - 1;
16     while (L <= R)
17     {
18         if (a[L] + a[R] <= m)
19         {
20             ans++;
21             L++;
22             R--;
23         }
24         else
25         {
26             ans++;
27             R--;
28         }
29     }
30 }
31 
32 int main()
33 {
34     //freopen("D:\\txt.txt", "r", stdin);
35     int t;
36     cin >> t;
37     while (t--)
38     {
39         cin >> n >> m;
40         for (int i = 0; i < n; i++)
41         {
42             cin >> a[i];
43         }
44         solve();
45         cout << ans << endl;
46         if (t)  cout << endl;
47     }
48     return 0;
49 }

 

以上是关于UVa 1149 装箱的主要内容,如果未能解决你的问题,请参考以下文章

习题 8-1 UVA - 1149Bin Packing

UVa1149 Bin Packing (贪心)

Uva1149

UVa 1149 - Bin Packing

P1149 火柴棒等式

poj1149PIGS——网络最大流