当前位置: 首页 > news >正文

算法·回溯

回溯和搜索的区别

可以简单理解为回溯就是:搜索+剪枝优化

回溯解决问题的数量级:10

回溯的应用:

  • 排列问题:
  • 组合问题:
  • 剪枝优化:

回溯算法的套路

二维回溯

  • 两个变量,按照两层for循环的形式搜索所有可能,注意换行。
	if(x>n){
		return ;
	}
	int next_xx = y == n ? x + 1 : x;
	int next_yy = y == n ? 1 : y + 1;
	dfs(next_xx,next_yy,...);
  • P1784 数独:标准的例题

(80分代码)

void dfs(int x, int y) {
	if (x > 9||y > 9) {
		printsudo();
		exit(0);
	}

	if (graph[x][y]) {
		if (y == 9)dfs(x + 1, 1);
		else dfs(x, y + 1);
		return;//防止回溯后篡改(x,y)
	}
	
	for (int k = 1; k <= 9; k++) {
		if (isvalid(x, y, k)) {
			graph[x][y] = k;
			if (y == 9)dfs(x + 1, 1);
			else dfs(x, y + 1);
			graph[x][y] = 0;
		}
	}
}
  • P2040 打开所有的灯:这里要注意到一个灯不会被开两次。(即使不是同时开关两次)。
void dfs(int x, int y, int times) {
	if (isvalid()) {
		ans = min(ans, times);
		return;
	}
	if (x > n) {
		return;
	}
	int next_xx = y == 3 ? x + 1 : x;
	int next_yy = y == 3 ? 1 : y + 1;
	dfs(next_xx, next_yy, times);//不点击
	

	graph[x][y] =graph[x][y]==0?1:0;//1->0,0->1
	for (int i = 0; i < 4; i++) {
		int next_x = x + dir[i][0];
		int next_y = y + dir[i][1];
		if (next_x >= 1 && next_x <= n && next_y >= 1 && next_y <= n) {
			graph[next_x][next_y]=graph[next_x][next_y] == 0 ? 1 : 0;
		}
	}
	//cout << "x:" << x << " y:" << y << endl;
	//printout();

	dfs(next_xx, next_yy, times + 1);//点击
	graph[x][y] = graph[x][y] == 0 ? 1 : 0;//1->0,0->1
	for (int i = 0; i < 4; i++) {
		int next_x = x + dir[i][0];
		int next_y = y + dir[i][1];
		if (next_x >= 1 && next_x <= n && next_y >= 1 && next_y <= n) {
			graph[next_x][next_y] = graph[next_x][next_y] == 0 ? 1 : 0;
		}
	}
	

}

最后检查

  • 使用DFS遍历所有结果,对每个结果只在最后收集时检查
  • 这个搜索次数过大,一般都会超时
  • P10386 [蓝桥杯 2024 省 A] 五子棋对弈:不设时间限制的题目,可以采用这种思路。

前向检查剪枝

  • 前向检查就是提前排除下一个潜在状态中不合理的值减少搜索范围。有的时候不需要isvalid()作最后的检查!
  • P9241 [蓝桥杯 2023 省 B] 飞机降落:前向检查优化

相关文章:

  • 22.OpenCV轮廓匹配原理介绍与使用
  • Pr视频剪辑 Premiere Pro 2024 for Mac
  • vector复制耗时
  • 批量将 txt/html/json/xml/csv 等文本拆分成多个文件
  • 说说你对python的理解,有什么特性?
  • BUUCTF流量分析题
  • 记录1---20250407
  • LTSPICE仿真电路:(二十六)跨阻放大器简单仿真
  • annotated-transformer-master复现注意点
  • 20250407在荣品的PRO-RK3566开发板适配Rockchip原厂的buildroot系统【使用荣品的DTS】
  • TDengine 与 taosAdapter 的结合(一)
  • JBDC Java数据库连接(1)
  • windows设置在终端中打开
  • JavaScript双问号操作符(??)详解,解决使用 || 时因类型转换带来的问题
  • 【微服务架构】SpringSecurity核心源码剖析+jwt+OAuth(二):SpringSecurity的源码初探(核心组件、认证流程)
  • 第一部分——Docker篇 第一章 Docker容器
  • 前缀和和差分笔记
  • Notepad++插件:快捷键交换两个选区的内容
  • 【微服务架构】SpringSecurity核心源码剖析+jwt+OAuth(一):SpringSecurity的初次邂逅(概念、认证、授权)
  • 用AbortController取消事件绑定
  • 网推平台有哪些比较好/九江seo优化
  • 深圳网站建设公司招聘/太原网站制作优化seo
  • 哪几个做内贸的网站比较好一点/公司企业员工培训
  • 网站的中英文切换怎么做的/百度的代理商有哪些
  • 临沂做网站好的公司/百度官网优化
  • 江苏集团网站建设/东莞搜索引擎推广