题目来源:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=3&page=show_problem&problem=38

 Ecological Bin Packing 

Background

Bin packing, or the placement of objects of certain weights into different bins subject to certain constraints, is an historically interesting problem. Some bin packing problems are NP-complete but are amenable to dynamic programming solutions or to approximately optimal heuristic solutions.

In this problem you will be solving a bin packing problem that deals with recycling glass.

The Problem

Recycling glass requires that the glass be separated by color into one of three categories: brown glass, green glass, and clear glass. In this problem you will be given three recycling bins, each containing a specified number of brown, green and clear bottles. In order to be recycled, the bottles will need to be moved so that each bin contains bottles of only one color.

The problem is to minimize the number of bottles that are moved. You may assume that the only problem is to minimize the number of movements between boxes.

For the purposes of this problem, each bin has infinite capacity and the only constraint is moving the bottles so that each bin contains bottles of a single color. The total number of bottles will never exceed 2^31.

The Input

The input consists of a series of lines with each line containing 9 integers. The first three integers on a line represent the number of brown, green, and clear bottles (respectively) in bin number 1, the second three represent the number of brown, green and clear bottles (respectively) in bin number 2, and the last three integers represent the number of brown, green, and clear bottles (respectively) in bin number 3. For example, the line 10 15 20 30 12 8 15 8 31

indicates that there are 20 clear bottles in bin 1, 12 green bottles in bin 2, and 15 brown bottles in bin 3.

Integers on a line will be separated by one or more spaces. Your program should process all lines in the input file.

The Output

For each line of input there will be one line of output indicating what color bottles go in what bin to minimize the number of bottle movements. You should also print the minimum number of bottle movements.

The output should consist of a string of the three upper case characters 'G', 'B', 'C' (representing the colors green, brown, and clear) representing the color associated with each bin.

The first character of the string represents the color associated with the first bin, the second character of the string represents the color associated with the second bin, and the third character represents the color associated with the third bin.

The integer indicating the minimum number of bottle movements should follow the string.

If more than one order of brown, green, and clear bins yields the minimum number of movements then the alphabetically first string representing a minimal configuration should be printed.

Sample Input

1 2 3 4 5 6 7 8 9
5 10 5 20 10 5 10 20 10

Sample Output

BCG 30
CBG 50 题目翻译:

背景

装箱问题,即在一定的约束条件下如何将不同重量的物体放入不同的箱子,是一个历史悠久的有趣问题。某些装箱问题是NP完全的,但可以通过动态规划法或近似最优的启发式解法来解决。在这个问题中,你要解决一个回收玻璃瓶的装箱问题

问题

玻璃瓶的回收需要将其按颜色分为三类:棕、绿和无色。在这个问题中你会得到三个回收废品箱,每个都包括给定数量的棕、绿或无色玻璃瓶。为了便于回收,瓶子需要进行分捡和移动,使得每个废品箱都只有一个颜色的瓶子。

问题就是要使移动的瓶子数最小化。你可以假定唯一的问题就是使箱子间的移动次数最小化。

对于这一问题的目的,每个废品箱的容量是无限的,并且唯一的约束条件就是要通过移动瓶子使每个废品箱中都只有一种颜色的瓶子。瓶子的总量永不会超过231

输入

输入由多行数据构成,每行数据中有9个整数。一行的前3个整数表示在1号废品箱中棕、绿和无色瓶子的数量各是多少,中间3个整数表示在2号废品箱中棕、绿和无色瓶子的数量各是多少,后3个整数表示在3号废品箱中棕、绿和无色瓶子的数量各是多少。比如下面的一行:

10 15 20 30 12 8 15 8 31

表示共有1号废品箱中有20个无色瓶子,2号废品箱有12个绿色瓶子,3号废品箱中有15个棕色瓶子。

每行的各整数间有一个或多个空格。你的程序要处理输入数据中的所有行。

输出

对于每行输入要有对应的一行输出,给出哪个颜色的瓶子装入哪个废品箱才能使瓶子的移动最小化。你还应打印出瓶子移动的最少次数。

输出应用3个大写字母‘G’、‘B’、‘C’(分别表示绿色、棕色和无色)构成的字符串来表示各废品箱中瓶子的颜色。

字符串的第1个字母为1号废品箱的颜色,第2个字母为2号废品箱的颜色,第3个字母为3号废品箱的颜色。在字符串之后应用整数输出移动瓶子次数的最小值。如果有多于一种次序的棕、绿和无色废品箱都满足同一个最少的移动次数,则按照字母表的顺序输入第一个字符串最小的一种。

输入示例

1 2 3 4 5 6 7 8 9
5 10 5 20 10 5 10 20 10

输出示例

BCG 30
CBG 50

解题思路:

首先明白题目中的玻璃瓶只有三种颜色,因此三种颜色的全排列3*2*1= 6.题目要求按照字典序最小的输出。将这六种的移动次数全部求出,找出最小的次数,同时输出对应的颜色方案》

代码:

 #include <bits/stdc++.h>

 using namespace std;

 string s[]={"BCG","BGC","CBG","CGB","GBC","GCB"};
int n[][];
int num[];
int main()
{
while(~scanf("%d%d%d%d%d%d%d%d%d",&n[][],&n[][],&n[][],&n[][],&n[][],&n[][],&n[][],&n[][],&n[][]))
{
int ans=,i,j;
num[]=n[][] + n[][] + n[][] + n[][] + n[][] + n[][];
num[]=n[][] + n[][] + n[][] + n[][] + n[][] + n[][];
num[]=n[][] + n[][] + n[][] + n[][] + n[][] + n[][];
num[]=n[][] + n[][] + n[][] + n[][] + n[][] + n[][];
num[]=n[][] + n[][] + n[][] + n[][] + n[][] + n[][];
num[]=n[][] + n[][] + n[][] + n[][] + n[][] + n[][];
for (j=i=; ++i<; j=num[i]<num[j] ? i : j);
cout<<s[j]<<" "<<num[j]<<endl;
}
}

UVa 102 - Ecological Bin Packing(规律,统计)的更多相关文章

  1. UVa - 102 - Ecological Bin Packing

    Background Bin packing, or the placement of objects of certain weights into different bins subject t ...

  2. UVa 1149 (贪心) Bin Packing

    首先对物品按重量从小到大排序排序. 因为每个背包最多装两个物品,所以直觉上是最轻的和最重的放一起最节省空间. 考虑最轻的物品i和最重的物品j,如果ij可以放在一个包里那就放在一起. 否则的话,j只能自 ...

  3. 【习题 8-1 UVA - 1149】Bin Packing

    [链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 每个背包只能装两个东西. 而且每个东西都要被装进去. 那么我们随意考虑某个物品.(不必要求顺序 这个物品肯定要放进某个背包里面的. ...

  4. Bin Packing

    Bin Packing 题目链接:http://acm.hust.edu.cn/vjudge/contest/view.action?cid=85904#problem/F 题目: A set of  ...

  5. Vector Bin Packing 华为讲座笔记

    Vector bin packing:first fit / best fit / grasp 成本:性价比 (先验) 设计评价函数: evaluation function:cosine simil ...

  6. UVA 1149 Bin Packing

    传送门 A set of n 1-dimensional items have to be packed in identical bins. All bins have exactly the sa ...

  7. UVA 1149 Bin Packing 二分+贪心

    A set of n 1-dimensional items have to be packed in identical bins. All bins have exactly the samele ...

  8. UVa 1149 Bin Packing 【贪心】

    题意:给定n个物品的重量l[i],背包的容量为w,同时要求每个背包最多装两个物品,求至少要多少个背包才能装下所有的物品 和之前做的独木舟上的旅行一样,注意一下格式就好了 #include<ios ...

  9. uva 1149:Bin Packing(贪心)

    题意:给定N物品的重量,背包容量M,一个背包最多放两个东西.问至少多少个背包. 思路:贪心,最大的和最小的放.如果这样都不行,那最大的一定孤独终生.否则,相伴而行. 代码: #include < ...

随机推荐

  1. 求1+2+3+...+n

    求1+2+3+...+n,要求不能使用乘除法.for.while.if.else.switch.case等关键字及条件判断语句(A?B:C). 卧槽,剑指Offer竟然有这样的题... public ...

  2. Mysql学习笔记(七)查(补充)

    PS:五一还是要学习...虽然有点苦逼..但是路是自己选的,那么自己就要坚持的走下去... 学习内容: 1.数据库查找的补充... 查找涉及的东西比较多,在上一个章节没有完全介绍...我们还是以pet ...

  3. Android程序ToDoList

    本文的目的是创建一个简单的ToDoList列表. 这个应用的功能是记录我的代办事项,简单到不需要本地存储,所有的代办事项都只是存储在内存中,就是只有程序打开的时候可以增加查看代办事项,当程序关闭的时候 ...

  4. 怎么快速了解自己的MySQL服务器

      1.查看数据库服务器状态:status Linux 下的MySQL服务器状态 该列表中主要包括MySQL的版本(为version 5.1.61).运行平台(debian-linux-gnu(i68 ...

  5. [Solution] 一步一步WCF(2) 终结点Endpoint

    繁忙的一天又一天,不管其他,先继续WCF吧. Endpoint包含地址,绑定,契约三要素.WCF作为一个Windows平台下最大的通信框架.通过终结点承载了所有通信功能.所以终结点的作用将非常重要. ...

  6. Scrum 3.1 多鱼点餐系统开发进度(第三阶段项目构思与任务规划)

    Scrum 3.1 多鱼点餐系统开发进度(第三阶段项目构思与任务规划) 1.团队名称:重案组 2.团队目标:长期经营,积累客户充分准备,伺机而行 3.团队口号:矢志不渝,追求完美 4.团队选题:餐厅到 ...

  7. MVC应用程序中管理(更新)上传的文件

    实现上传文件功能,有时上传也会操作出错,能让用户有改正有机会,开发上传文件能有更新的功能. 文件上传时,如果是存储于应用程序某一目录的话,在更新时需要了解一些流程,先是删除旧文件,更新数据表相关信息, ...

  8. sql date()函数,时间格式

    (1).GETDATE() 函数从 SQL Server 返回当前的日期和时间. 语法 GETDATE() 实例 下面是 SELECT 语句: SELECT GETDATE() AS CurrentD ...

  9. 购买SSL证书到部署网站遇到的若干问题

    作为一个菜鸟,对于SSL证书,我了解不多,只知道用了它网站更安全,所以这次使用SSL证书途中遇到了各方面的各种问题,到今天为止终于全部解决. 一.证书格式 前两天在那什么云上面买了个SSL证书,是Wo ...

  10. 不可或缺 Windows Native (10) - C 语言: 文件

    [源码下载] 不可或缺 Windows Native (10) - C 语言: 文件 作者:webabcd 介绍不可或缺 Windows Native 之 C 语言 文件 示例cFile.h #ifn ...