hdu1171Big Event in HDU(01背包或多重背包)

解决计算机学院与软件学院设施公平分配的问题,通过01背包和多重背包算法实现。

Big Event in HDU

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 43630    Accepted Submission(s): 14999


Problem Description
Nowadays, we all know that Computer College is the biggest department in HDU. But, maybe you don't know that Computer College had ever been split into Computer College and Software College in 2002.
The splitting is absolutely a big event in HDU! At the same time, it is a trouble thing too. All facilities must go halves. First, all facilities are assessed, and two facilities are thought to be same if they have the same value. It is assumed that there is N (0<N<1000) kinds of facilities (different value, different kinds).
 

Input
Input contains multiple test cases. Each test case starts with a number N (0 < N <= 50 -- the total number of different facilities). The next N lines contain an integer V (0<V<=50 --value of facility) and an integer M (0<M<=100 --corresponding number of the facilities) each. You can assume that all V are different.
A test case starting with a negative integer terminates input and this test case is not to be processed.
 

Output
For each case, print one line containing two integers A and B which denote the value of Computer College and Software College will get respectively. A and B should be as equal as possible. At the same time, you should guarantee that A is not less than B.
 

Sample Input
  
2 10 1 20 1 3 10 1 20 2 30 1 -1
 

Sample Output
  
20 10 40 40


这个题数据量不是特别大,直接转换成01背包做就可以。多重背包二进制,可以去搜下学习。

说白了就是,任何数都可以用二进制0,1表示,所以任何一个数m = 2^i+2^j这样表示,所以这

样可以枚举完所有的可能。

01背包:

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<queue>
#include<stack>
#include<cstring>
#include<string>
#include<vector>
#include<map>
using namespace std;
#define mem(a,b) memset(a,b,sizeof(a))
typedef long long ll;
const int maxn = 5e5+5;
const int ff = 0x3f3f3f3f;

int n;
int w[maxn],v[maxn];
int dp[maxn];

int main()
{
	while(~scanf("%d",&n)&&(n> 0))
	{
		mem(dp,0);
		mem(w,0);
		mem(v,0);
		int sum = 0;
		for(int i = 1;i<= n;i++)
		{
			scanf("%d %d",&w[i],&v[i]);
			sum+= w[i]*v[i];
			if(v[i]> 1)
			{
				int j = i; 
				while(v[j]> 1)//把其拆成几个,看成不一样的元素来处理。
				{
					w[++i] = w[j];
					v[j]--;
					n++;
				}
			}
		}
		int m = sum/2;
		for(int i = 1;i<= n;i++)
			for(int j = m;j>= w[i];j--)
				dp[j] = max(dp[j],dp[j-w[i]]+w[i]);
		sum-= dp[m];
		printf("%d %d\n",sum,dp[m]);
	}
	
	
	return 0;
}

多重背包:

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<queue>
#include<stack>
#include<cstring>
#include<string>
#include<vector>
#include<map>
#include<cmath>
using namespace std;
#define mem(a,b) memset(a,b,sizeof(a))
typedef long long ll;
const int maxn = 1e3+5;
const int ff = 0x3f3f3f3f;
typedef struct
{
	int price;
	int num;
} node;

node a[100];
int n;
int dp[300001];

int main()
{
	while(~scanf("%d",&n)&&(n> 0))
	{
		mem(dp,0);
		int sum = 0;
		for(int i = 1;i<= n;i++)
			scanf("%d %d",&a[i].price,&a[i].num),sum+= a[i].price*a[i].num;
		int m = sum/2;
		for(int i = 1;i<= n;i++)
		{
			int k = 1,num = a[i].num;
			while(num> k)
			{
				for(int j = m;j>= a[i].price*k;j--)
					dp[j] = max(dp[j],dp[j-a[i].price*k]+a[i].price*k);
				num-= k;
				k*= 2;//翻着番地增加
			}
			for(int j = m;j>= a[i].price*num;j--)//处理剩下的
				dp[j] = max(dp[j],dp[j-a[i].price*num]+a[i].price*num);
		}
		sum-= dp[m];
		printf("%d %d\n",sum,dp[m]);
	}
	return 0;
}

很多文章呢


代码转载自:https://pan.quark.cn/s/8ce4326d996e 对于在 CentOS 7 系统中修改网卡配置文件后无法使设置生效的情况,经过实践验证,可以通过使用 nmcli 命令来进行调整。完成修改之后,需要重新启动虚拟机以使更改生效,这样操作流程即告完成。如果设置仍然无法生效,则表明虚拟机在启动过程中所获取的 IP 地址配置并非针对 eth0,此时可以对其它网卡的配置文件进行修改将其移除。在 CentOS 7 系统中,网络配置的管理机制与早期版本存在差异,主要体现为采用了 Network Manager 服务来负责网络接口的管理。在某些情形下,尽管修改了 `/etc/sysconfig/network-scripts` 目录下的 `ifcfg-eth0` 文件,但网络配置却未能即时生效。此类问题的发生通常源于 CentOS 7 采用了不同于以往的配置读取方法。接下来将具体阐述如何借助 nmcli 命令来处理这一挑战。 以 root 用户身份登录系统并打开终端界面。nmcli 是 Network Manager 提供的命令行界面工具,它支持在命令行环境下执行网络连接的建立、编辑、查询及管理任务。针对修改 eth0 网卡配置的需求,可以遵循以下步骤进行操作: 1. 导航至 `/etc/sysconfig/network-scripts` 目录: ``` cd /etc/sysconfig/network-scripts ``` 2. 检查该目录内是否存在 `ifcfg-eth0.bak` 文件,该备份文件可能是先前调整配置时遗留下来的,若存在可能造成冲突。若发现该文件,可以选择将其删除: ``` [root@localhost netw...
代码转载自:https://pan.quark.cn/s/46fd08fb879c 网管教程 从入门到精通软件篇 ★一。★详尽的xp修复控制台指令及其应用!!! 放入xp(2000)的光盘,安装时选择R,执行修复! Windows XP(涵盖 Windows 2000)的控制台指令是在系统遭遇某些意外状况时的一种极具效用的诊断、检测以及恢复系统功能的工具。笔者确实一直期望能够将这方面的指令进行归纳,此次由老范辛苦整理了这份极具价值的秘籍。 Bootcfg bootcfg 命令用于启动配置与故障恢复(对大多数计算机而言,即 boot.ini 文件)。 带有特定参数的 bootcfg 命令仅在运用故障恢复控制台时方可使用。能够在命令行界面下运用带有不同参数的 bootcfg 命令。 用法: bootcfg /default 设定默认引导选项。 bootcfg /add 向引导清单中增添 Windows 安装。 bootcfg /rebuild 重复整个 Windows 安装流程并让用户选择需添加的项目。 注意:运用 bootcfg /rebuild 之前,应先借助 bootcfg /copy 命令备份 boot.ini 文件。 bootcfg /scan 探查用于 Windows 安装的全部磁盘并展示结果。 注意:这些结果被静态存储,并用于当前会话。若在当前会话期间磁盘配置发生变动,为获取更新的探查结果,必须先重启计算机,然后再次探查磁盘。 bootcfg /list 列示引导清单中已有的项目。 bootcfg /disableredirect 在启动引导程序中禁用重定向。 bootcfg /redirect [ PortBaudRrate] |[ useBio...
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值