深度优先搜索

165. 小猫爬山

在这里插入图片描述
在这里插入图片描述

每次安排猫的时候有两种方法:用已经使用过的车来装、用没有使用过的车来装
需要进行剪枝:当 state 已经大于等于已经得到的答案,那么就直接回溯。
剪枝前TLE,剪枝之后耗时94ms

#include <iostream>
#include <algorithm>
using namespace std;

int n, w, res;
int c[20], rest[20];
// 已经安排了 u 只猫,使用了 state 辆车 
void dfs(int u, int state)
{
	// 这个剪枝非常重要,没有就会超时 
	if (state >= res)
		return;
	// 安排好了n只猫 
	if (u == n) {
		res = min(res, state);
		return;
	}
	// 用已经使用过的车来装 
	for (int i = 0; i < state; i++) {
		if (rest[i] >= c[u]) {
			rest[i] -= c[u];
			dfs(u + 1, state);
			
			rest[i] += c[u];
		}
	}
	//用没有使用过的车来装 
	rest[state] -= c[u];
	dfs(u + 1, state + 1);
	rest[state] += c[u];
}

int main(void)
{
	cin >> n >> w;
	res = n;
	for (int i = 0; i < n; i++) {
		cin >> c[i];
		rest[i] = w;
	}
	dfs(0, 0);
	
	cout << res << endl;
	
	return 0;
}

将小猫按重量从大到小排序,可以减少搜索树的分支数目。
优化后耗时30ms

#include <iostream>
#include <algorithm>
using namespace std;

int n, w, res;
int c[20], rest[20];

bool cmp(int a, int b)
{
    return a > b;
}

// 已经安排了 u 只猫,使用了 state 辆车 
void dfs(int u, int state)
{
	// 这个剪枝非常重要,没有就会超时 
	if (state >= res)
		return;
	// 装好了n只猫 
	if (u == n) {
		res = min(res, state);
		return;
	}
	// 用已经使用过的车来装 
	for (int i = 0; i < state; i++) {
		if (rest[i] >= c[u]) {
			rest[i] -= c[u];
			dfs(u + 1, state);
			
			rest[i] += c[u];
		}
	}
	//用没有使用过的车来装 
	rest[state] -= c[u];
	dfs(u + 1, state + 1);
	rest[state] += c[u];
}

int main(void)
{
	cin >> n >> w;
	res = n;
	for (int i = 0; i < n; i++) {
		cin >> c[i];
		rest[i] = w;
	}
	sort(c, c + n, cmp);
	dfs(0, 0);
	
	cout << res << endl;
	
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值