搜索 MAYAN

2024-01-06 21:32
文章标签 搜索 mayan

本文主要是介绍搜索 MAYAN,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

原题:NOIP 2011 MAYAN

类型:搜索 (小剪枝),不是很难

program mayan;
type
byte=integer;state=array[1..5,1..7]of byte;oper=objecta,b,c:array[1..5]of byte;procedure push(d,x,y,t:byte);procedure print;end;
var limit:byte; a:state; o:oper;
procedure oper.push(d,x,y,t:byte);
begina[d]:=x; b[d]:=y; c[d]:=t;
end;
procedure oper.print; var i:byte;
beginfor i:=1 to limit dowriteln(a[i]-1,' ',b[i]-1,' ',2-c[i]);close(input);close(output);halt;
end;var mark:array[1..5,1..7]of boolean;
function drop(var a:state;var tot:byte):boolean; var i,j:byte;
beginfillchar(mark,sizeof(mark),0); drop:=false;for i:=3 to 5 dofor j:=1 to 7 doif a[i][j]>0 thenif (a[i][j]=a[i-1][j])and(a[i][j]=a[i-2][j]) then beginmark[i][j]:=true;mark[i-1][j]:=true;mark[i-2][j]:=true;drop:=true;end;for i:=1 to 5 dofor j:=3 to 7 doif a[i][j]>0 thenif (a[i][j]=a[i][j-1])and(a[i][j]=a[i][j-2]) then beginmark[i][j]:=true;mark[i][j-1]:=true;mark[i][j-2]:=true;drop:=true;end;for i:=1 to 5 dofor j:=1 to 7 doif mark[i][j] then begin a[i][j]:=0; dec(tot); end;
end;procedure del(var a:state);
var g:array[1..7]of byte; i,j,t:byte;
beginfor i:=1 to 5 do begint:=0;move(a[i],g,sizeof(g));fillchar(a[i],sizeof(a[i]),0);for j:=1 to 7 do if g[j]>0 then begininc(t); a[i][t]:=g[j];end;end;
end;procedure dfs(const dep:byte; const a:state; const tot:byte);
var tmp:state; tt:byte; i,j:byte;procedure swap(var i,j:byte);var t:byte;begin t:=i; i:=j; j:=t; end;
beginif dep=limit thenif tot=0 then o.print else exit;for i:=1 to 5 dofor j:=1 to 7 do if a[i][j]>0 then beginif i<5 then beginif a[i][j]=a[i+1][j] then continue;move(a,tmp,sizeof(a)); tt:=tot;swap(tmp[i][j],tmp[i+1][j]);del(tmp);while drop(tmp,tt) do del(tmp);o.push(dep+1,i,j,1);dfs(dep+1,tmp,tt);end;if i>1 then beginif a[i][j]=a[i-1][j] then continue;if (a[i-1][j]>0)and(a[i][j]>0) then continue;move(a,tmp,sizeof(a)); tt:=tot;swap(tmp[i][j],tmp[i-1][j]);del(tmp);while drop(tmp,tt) do del(tmp);o.push(dep+1,i,j,3);dfs(dep+1,tmp,tt);end;end;
end;var i,j,t:byte;
beginassign(input,'mayan.in');reset(input);assign(output,'mayan.out');rewrite(output);readln(limit); t:=0;for i:=1 to 5 do beginfor j:=1 to 7 do beginread(a[i][j]);if a[i][j]=0 then break else inc(t);end;readln;end;Dfs(0,a,t);writeln(-1);
end.


 

这篇关于搜索 MAYAN的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/577681

相关文章

C# ComboBox下拉框实现搜索方式

《C#ComboBox下拉框实现搜索方式》文章介绍了如何在加载窗口时实现一个功能,并在ComboBox下拉框中添加键盘事件以实现搜索功能,由于数据不方便公开,作者表示理解并希望得到大家的指教... 目录C# ComboBox下拉框实现搜索步骤一步骤二步骤三总结C# ComboBox下拉框实现搜索步骤一这

认识、理解、分类——acm之搜索

普通搜索方法有两种:1、广度优先搜索;2、深度优先搜索; 更多搜索方法: 3、双向广度优先搜索; 4、启发式搜索(包括A*算法等); 搜索通常会用到的知识点:状态压缩(位压缩,利用hash思想压缩)。

hdu1240、hdu1253(三维搜索题)

1、从后往前输入,(x,y,z); 2、从下往上输入,(y , z, x); 3、从左往右输入,(z,x,y); hdu1240代码如下: #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#inc

hdu 4517 floyd+记忆化搜索

题意: 有n(100)个景点,m(1000)条路,时间限制为t(300),起点s,终点e。 访问每个景点需要时间cost_i,每个景点的访问价值为value_i。 点与点之间行走需要花费的时间为g[ i ] [ j ] 。注意点间可能有多条边。 走到一个点时可以选择访问或者不访问,并且当前点的访问价值应该严格大于前一个访问的点。 现在求,从起点出发,到达终点,在时间限制内,能得到的最大

AI基础 L9 Local Search II 局部搜索

Local Beam search 对于当前的所有k个状态,生成它们的所有可能后继状态。 检查生成的后继状态中是否有任何状态是解决方案。 如果所有后继状态都不是解决方案,则从所有后继状态中选择k个最佳状态。 当达到预设的迭代次数或满足某个终止条件时,算法停止。 — Choose k successors randomly, biased towards good ones — Close

hdu4277搜索

给你n个有长度的线段,问如果用上所有的线段来拼1个三角形,最多能拼出多少种不同的? import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;

浙大数据结构:04-树7 二叉搜索树的操作集

这道题答案都在PPT上,所以先学会再写的话并不难。 1、BinTree Insert( BinTree BST, ElementType X ) 递归实现,小就进左子树,大就进右子树。 为空就新建结点插入。 BinTree Insert( BinTree BST, ElementType X ){if(!BST){BST=(BinTree)malloc(sizeof(struct TNo

【python计算机视觉编程——7.图像搜索】

python计算机视觉编程——7.图像搜索 7.图像搜索7.1 基于内容的图像检索(CBIR)从文本挖掘中获取灵感——矢量空间模型(BOW表示模型)7.2 视觉单词**思想****特征提取**: 创建词汇7.3 图像索引7.3.1 建立数据库7.3.2 添加图像 7.4 在数据库中搜索图像7.4.1 利用索引获取获选图像7.4.2 用一幅图像进行查询7.4.3 确定对比基准并绘制结果 7.

记忆化搜索【下】

375. 猜数字大小II 题目分析 题目链接:375. 猜数字大小 II - 力扣(LeetCode) 题目比较长,大致意思就是给一个数,比如说10,定的数字是7,让我们在[1, 10]这个区间猜。 如果猜大或猜小都会说明是大了还是小了,此外,我们还需要支付猜错数字对应的现金。 现在就是让我们定制一个猜测策略,确保准备最少的钱能猜对 如果采用二分查找,只能确保最小次数,题目要求的

2014暑假集训搜索专题

A - 漫步校园 Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u Submit Status Description LL最近沉迷于AC不能自拔,每天寝室、机房两点一线。由于长时间坐在电脑边,缺乏运动。他决定充分利用每次从寝室到机房的时间,在校园里散散步。整个HDU校园呈方形布局,可划