POJ 1014 Dividing 背包

二进制优化,事实上是物体的分解问题。

就是比方一个物体有数量限制,比方是13,那么就须要把这个物体分解为1。 2, 4, 6

假设这个物体有数量为25,那么就分解为1, 2, 4。 8。 10

看出规律吗,就是分成2的倍数加上位数,比方6 = 13 - 1 - 2 - 4, 10 = 25 - 1 - 2 - 4 - 8。呵呵,为什么这么分解?

由于这样分解之后就能够组合成全部1到13的数。为25的时候能够组合成全部1到25的数啦。

就是这么一个分解物体。最后组合的问题。

不明确?

给多几个数字组合:

31分解 1, 2, 4, 8, 16

32分解1,2,4, 8, 16, 1

33分解1,2,4,8,16,2

如此分解的。

想通了,就和一般背包问题一样做法了。

#include <stdio.h>
#include <vector>
using std::vector;const int SIZE = 7;
int N[SIZE];
bool findPartition()
{int sum = 0;for (int i = 1; i < SIZE; i++)sum += i * N[i];if (sum & 1) return false;int half = sum >> 1;vector<bool> part(half+1);part[0] = true;for (int i = 1; i < SIZE; i++){int k = 1;for ( ; (k<<1) <= N[i]; k <<= 1){//例:13分解为1,2,4,6能够组合为1到13个物品。故此考虑了全部情况了for (int j = half; j >= k*i; j--){if (part[j-k*i]) part[j] = true;}}k = N[i] - k + 1;for (int j = half; j >= k*i; j--){if (part[j-k*i]) part[j] = true;}}return part[half];
}int main()
{	int t = 1;while (true){int val = 0;for (int i = 1; i < SIZE; i++){scanf("%d", &N[i]);val += N[i];}if (!val) return 0;if (findPartition()) printf("Collection #%d:\nCan be divided.\n\n", t++);else printf("Collection #%d:\nCan't be divided.\n\n", t++);}return 0;
}



本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/541275.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

node.js 中间件_Node.js中的Passport中间件(模块)

node.js 中间件Hi! Welcome to Node.js Authentication Series, where well study and program the passport module or middleware. 嗨&#xff01; 欢迎使用Node.js身份验证系列 &#xff0c;我们将在其中研究和编程通行证模块或中间件 。 Nowadays, an important tool in m…

android开发自动提示框,Android 多种简单的弹出框样式设置代码

简介这是一个基于AlertDialog和Dialog这两个类封装的多种弹出框样式&#xff0c;其中提供各种简单样式的弹出框使用说明。同时也可自定义弹出框。项目地址&#xff1a;http://www.easck.com/jjdxmashl/jjdxm_dialogui特性1.使用链式开发代码简洁明了2.所有的弹出框样式都在Dial…

小程序中利用Moment.js格式时间

2019独角兽企业重金招聘Python工程师标准>>> LeanCloud给的日期是ISO格式&#xff0c;比如2017-06-05T14:08:20.589Z&#xff0c;直接显示在页面上体验不好。 凡是有关日期的&#xff0c;格式化、计算&#xff0c;用moment就够了。 1.下载 http://momentjs.com/ 选m…

php 检查数组为空_检查数组是否为空在PHP中

php 检查数组为空Given an array and we have to check if array is an empty or not using PHP. 给定一个数组&#xff0c;我们必须检查数组是否为空或不使用PHP。 To check whether an array is empty or not, we can use a built-in function empty(), in other cases wher…

JEESZ分布式架构3--CentOs下安装MySQL(环境准备)

声明&#xff1a;因为运行环境是基于Linux系统的&#xff0c;在做此框架之前需要做一些前期的环境准备工作CentOs下安装MySQL网上很多实例&#xff0c;因为博客后期作为框架的原生教程&#xff0c;故这边做详细的安装记录&#xff0c;我这边已经下载好了MySQL&#xff0c;通过s…

一个函数里两个setjmp_C语言中setjmp.h的longjmp()函数

一个函数里两个setjmpWe can call this function as an advance version of goto statement but with more dynamic range. The longjump() function allows us to pass parameters to know that the control has been jumped or not. 我们可以将此函数称为goto语句的高级版本&…

linux sublime nodejs,Ubuntu环境下sublime3 nodejs安装与插件配置

1.sudo add-apt-repository ppa:webupd8team/sublime-text-3回车&#xff0c;出现很多信息。但是我们看看图片最后字知道&#xff0c;这地方在等待我们确认是否添加这个仓库&#xff0c;按enter键继续&#xff0c;按crtlc取消。此时&#xff0c;按ENTER继续&#xff0c;建立信任…

李洪强iOS开发之FMDB线程安全的用法

// // ViewController.m // 04 - FMDB线程安全的用法 // // Created by 李洪强 on 2017/6/6. // Copyright © 2017年 李洪强. All rights reserved. // #import "ViewController.h" //导入头文件 #import "FMDB.h" interface ViewController () p…

SCHAR_MIN常数,C ++中的示例

C SCHAR_MIN宏常量 (C SCHAR_MIN macro constant) SCHAR_MIN constant is a macro constant which is defied in climits header, it is used to get the minimum value of a signed char object, it returns the minimum value that a signed char object can store, which i…

android分开两个线程做事,android开发教程之handle实现多线程和异步处理

这次浅谈一下Handler,为什么会出现Handler这个功能特性呢&#xff1f;首先&#xff0c;在之前的基本控件&#xff0c;基本都是在Activity的onCreate(Bundle savedInstanceState)方法中调用和处理的&#xff0c;但是&#xff0c;在有些情况&#xff0c;比如在网络上下载软件等一…

夏夜

儿时的夏夜毕竟是最有夏夜的味道。屋堂的煤油灯啪嗒的跳动&#xff0c;忽明忽暗&#xff0c;真怕它脆弱的明亮突然变黑暗。屋外弯月星稀&#xff0c;月光优雅的撒在平静的湖面上&#xff0c;清纯而又温和。水鸟在湖岸边慵懒的伸了伸脖子。正享受着夏夜的宁静和清凉。调皮的小孩…

Python operator.lt()函数与示例

operator.lt()函数 (operator.lt() Function) operator.lt() function is a library function of operator module, it is used to perform "less than operation" on two values and returns True if the first value is less than the second value, False, otherw…

android实现滑动切换图,Android:使用ViewPager实现左右滑动切换图片加点点

图片发自简书App1、引入android-support-v4.jar包&#xff0c;在主布局里加入< ?xml version"1.0" encoding"utf-8"?>< RelativeLayout xmlns:android"http://schemas.android.com/apk/res/android"xmlns:tools"http://schemas.…

div的替代品

人们在标签使用中最常见到的错误之一就是随意将HTML5的<section>等价于<div>——具体地说&#xff0c;就是直接用作替代品(用于样式)。在XHTML或者HTML4中&#xff0c;我们常看到这样的代码&#xff1a; <!-- HTML 4-style code --> <div id"wrapper…

threadgroup_Java ThreadGroup list()方法与示例

threadgroupThreadGroup类的list()方法 (ThreadGroup Class list() method) list() method is available in java.lang package. list()方法在java.lang包中可用。 list() method is used to list or display information (like name, priority, thread group, etc.) to the st…

html的柱状图去除右边纵坐标,excel如何把次坐标轴逆序

excel2010设置水平坐标轴逆序类型,但垂直坐标轴刻设置水平坐标轴逆序且垂直坐标轴轴仍位于图表左侧的步骤是&#xff1a;打开带有图表的Excel工作表&#xff1b;在图表区域的水平轴标签位置双击鼠标左键&#xff0c;打开“设置坐标轴格式”&#xff1b;勾寻逆序类别”&#xff…

jhipster项目迁移websocket

2019独角兽企业重金招聘Python工程师标准>>> 1、 在项目目录下命令行安装 两个组件 bower install sockjs-client bower install stomp-websocket 2、在index.html 中加入组件js的引用 <script src"bower_components/sockjs-client/dist/sockjs.js">…

Java包hashCode()方法及示例

包类hashCode()方法 (Package Class hashCode() method) hashCode() method is available in java.lang package. hashCode()方法在java.lang包中可用。 hashCode() method is used to return the hashcode of the package calculated from the package name. hashCode()方法用…

html 图片上放置按钮,用CSS在图片上再加一个小按钮

很简单的&#xff0c;嗯&#xff0c;就是要做成这样的&#xff1a;用CSS&#xff0c;当然得用层了&#xff0c;就是在图片上再加一个层&#xff0c;用来放那个按钮&#xff0c;按钮又有两种方式可以放&#xff0c;一种是直接用图片img标签&#xff0c;一种是通过背景图片放上去…

html点击导航变色,点击导航后,当前导航的颜色变色

html>Documentnav ul {padding: 0;list-style: none;}nav ul li {text-decoration: none;width: 70px;line-height: 50px;text-align: center;float: left;background-color: #000;color: #fff;cursor: pointer;}.gray {background-color: rgba(0,0,0,0.6);}首页实战路径猿问…