博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 2923(状态压缩+背包)
阅读量:6434 次
发布时间:2019-06-23

本文共 2857 字,大约阅读时间需要 9 分钟。

比较巧妙的一道题目,拿到题目就想用暴力直接搜索,仔细分析了下发现复杂度达到了2^n*n! ,明显不行,于是只好往背包上想。 于是又想二分找次数判断可行的方法,但是发现复杂度10^8还是很悬。。。
然后学习了这种背包状压的好思路, 巧妙的转化成了背包的模型。 一道经典的题目!
 
Relocation
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 1664   Accepted: 678

Description

Emma and Eric are moving to their new house they bought after returning from their honeymoon. Fortunately, they have a few friends helping them relocate. To move the furniture, they only have two compact cars, which complicates everything a bit. Since the furniture does not fit into the cars, Eric wants to put them on top of the cars. However, both cars only support a certain weight on their roof, so they will have to do several trips to transport everything. The schedule for the move is planed like this:

  1. At their old place, they will put furniture on both cars.
  2. Then, they will drive to their new place with the two cars and carry the furniture upstairs.
  3. Finally, everybody will return to their old place and the process continues until everything is moved to the new place.

Note, that the group is always staying together so that they can have more fun and nobody feels lonely. Since the distance between the houses is quite large, Eric wants to make as few trips as possible.

Given the weights wi of each individual piece of furniture and the capacities C1 and C2 of the two cars, how many trips to the new house does the party have to make to move all the furniture? If a car has capacity C, the sum of the weights of all the furniture it loads for one trip can be at most C.

Input

The first line contains the number of scenarios. Each scenario consists of one line containing three numbers nC1 and C2C1 and C2 are the capacities of the cars (1 ≤ Ci ≤ 100) and n is the number of pieces of furniture (1 ≤ n ≤ 10). The following line will contain n integers w1, …, wn, the weights of the furniture (1 ≤ wi ≤ 100). It is guaranteed that each piece of furniture can be loaded by at least one of the two cars.

Output

The output for every scenario begins with a line containing “Scenario #i:”, where i is the number of the scenario starting at 1. Then print a single line with the number of trips to the new house they have to make to move all the furniture. Terminate each scenario with a blank line.

Sample Input

26 12 133 9 13 3 10 117 1 1001 2 33 50 50 67 98

Sample Output

Scenario #1:2Scenario #2:3

Source

, Darmstadt, Germany
 
 
 
#include 
#include
#include
#include
#include
using namespace std;#define INF 0x3ffffffint c1,c2,n;int g[11];int save[10010];int dp[10010];int check(int s){ int tg[10]; int cnt=0; int sum=0; for(int i=0;i
111111 for(int i=1;i<(1<
=save[i];j--) { if( (j| save[i] ) != j) continue; dp[j]=min(dp[j],dp[j^save[i]]+1); } } printf("Scenario #%d:\n",tt++); printf("%d\n",dp[(1<

 

转载地址:http://mpqga.baihongyu.com/

你可能感兴趣的文章
大数据时代的技术hive:hive介绍
查看>>
科普:WiFi是谁申请的专利?高通吗?错!
查看>>
JMeter基础之-使用技巧
查看>>
为CentOS 6 配置本地YUM源
查看>>
Java7的异常处理新特性-addSuppressed()方法等
查看>>
C# 该行已经属于还有一个表 的解决方法
查看>>
jquery中Live方法不可用,Jquery中Live方法失效
查看>>
[转]run for a girl
查看>>
android monkey
查看>>
Unity3D 人形血条制作小知识
查看>>
Delphi XE7中新并行库
查看>>
Java 调用Dll
查看>>
Java Servlet(三):Servlet中ServletConfig对象和ServletContext对象
查看>>
推荐系统多样性
查看>>
用BlazeMeter录制JMeter测试脚本
查看>>
通过PowerShell查询本机IP地址
查看>>
使用Dezender对zend加密后的php文件进行解密
查看>>
Nginx配置之基于域名的虚拟主机
查看>>
基于DDD的.NET开发框架 - ABP模块设计
查看>>
Linux下tar.xz结尾的文件的解压方法
查看>>