A - 棋盘问题:在一个给定形状的棋盘(形状可能是不规则的)上面摆放棋子,棋子没有区别。要求摆放时任意的两个棋子不能放在棋盘中的同一行或者同一列,请编程求解对于给定形状和大小的棋盘,摆放k个棋子的所有可行的摆放方案C。

解题思路:DFS,在这里有两个搜索方向,同时对每个位置的描述由xy坐标完成,第一次我尝试使用pair+vector保存棋盘位置,用两个数组描述放过棋子的行和列但是由于清除标记没做好WA了。这里是因为DFS搜索中状态转移没确定好,导致清楚标记复杂而出错,改为逐行递归逐列遍历。在这里要注意用getchar()清除读取时回车,还有一次WA是因为把边界检查放在了结果检查的后边(因为检测num修改cnt实在DFS(i+1)中,先进行边界检查就导致解 的结果变少)。

AC代码:

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
const int MAXN = ;
char g[MAXN][MAXN];
int place[MAXN],n,k,cnt,num;
void DFS(int i)//按行递归,逐列遍历
{
if(num==k)
{
cnt++;
return ;
}
if(i>=n)
return ;
for(int j=;j<n;j++)
{
if(!place[j]&&g[i][j]=='#')
{
place[j] = ;
num++;
DFS(i+);
place[j] = ;//清除标记
num--;
}
}
DFS(i+);//i行也可以不放棋子
}
int main()
{
while(scanf("%d%d",&n,&k))
{
if(n==-&&k==-)
break;
char c;
getchar();
for(int i=;i<n;i++)
{
for(int j=;j<n;j++)
scanf("%c",&g[i][j]);
getchar();
}
cnt = ;
num = ;
memset(place,,sizeof(place));
DFS();
cout<<cnt<<endl;
}
}

B - Dungeon Master

You are trapped in a 3D dungeon and need to find the quickest way out! The dungeon is composed of unit cubes which may or may not be filled with rock. It takes one minute to move one unit north, south, east, west, up or down. You cannot move diagonally and the maze is surrounded by solid rock on all sides.

Is an escape possible? If yes, how long will it take?

这是一个三维BFS搜索,确定方向设置三维数组解决。注意DFS和BFS的使用场合,DFS适合求出路径和具体信息,BFD适合求出最短路径和长度,这里显然用BFS比较好。。

#include <iostream>
#include<vector>
#include<queue>
#include<string>
#define MAX 31
using namespace std;
int dir[][] = { {,,},{-,,},{,,},{,-,},{,,},{,,-} };
struct node{
int l;
int r;
int c;
int step;
};
int dfs(node start,node to);
void Read(int l,int r,int c); char g[MAX][MAX][MAX];
node start,to;
int l,r,c,d=;
bool judge(int tl,int tr,int tc)
{
if(tl<||tr<||tc<||tl>=l||tr>=r||tc>=c||g[tl][tr][tc]=='#')
return false;
return true;
}
int main()
{
cin>>l>>r>>c;
while(l!=&&r!=&&c!=)
{
Read(l,r,c);
d = dfs(start,to);
if(d != -)
printf("Escaped in %d minute(s).\n", d);
else
printf("Trapped!\n");
cin>>l>>r>>c;
}
}
void Read(int l,int r,int c)
{
int k,i,j;
string str;
for(k=;k<l;k++)
{
for(i=;i<r;i++)
{
cin>>str;
for(j=;j<c;j++)
{
if(str[j]=='S')
{
start.r =i;
start.c = j;
start.l = k;
}
if(str[j]=='E')
{
to.r = i;
to.c = j;
to.l = k;
}
g[k][i][j] = str[j];
}
}
getchar();
}
}
int dfs(node start,node to)
{
int distance = ;
queue<node> Q;
Q.push(start);
while(!Q.empty())
{
start = Q.front();
Q.pop();
if(start.c==to.c&&start.r==to.r&&start.l==to.l)
return start.step;
for(int i=; i<; i++)
{
node q = start;
q.r += dir[i][];
q.c += dir[i][];
q.l += dir[i][];
q.step += ; if(judge(q.l,q.r,q.c))
{
g[q.l][q.r][q.c] = '#';
Q.push(q);
}
}
}
return -;
}

C - Catch That Cow

armer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a number line and the cow is at a point K (0 ≤ K ≤ 100,000) on the same number line. Farmer John has two modes of transportation: walking and teleporting.

* Walking: FJ can move from any point X to the points - 1 or + 1 in a single minute
* Teleporting: FJ can move from any point X to the point 2 × X in a single minute.

If the cow, unaware of its pursuit, does not move at all, how long does it take for Farmer John to retrieve it?

这个题目WA了好多次,,首先确定用数组保存到达每个点的最短距离和到达的步数,然后BFS分别在三种情况下搜索,已经搜索过了就不用再次搜素(step肯定比之前大,就不是最优解了),这里主要是没有注意到用数组保存状态还有边界检查,导致超时。

#include <stdio.h>
#include <string.h>
#include <queue>
using namespace std;
const int N = ;
int map[N+];
int n,k;
struct node
{
int x,step;
};
int check(int x)
{
if(x< || x>=N || map[x])
return ;
return ;
}
int bfs(int x)
{
int i;
queue<node> Q;
node a,next;
a.x = x;
a.step = ;
map[x] = ;
Q.push(a);
while(!Q.empty())
{
a = Q.front();
Q.pop();
if(a.x == k)
return a.step;
next = a;
//每次都将三种状况加入队列之中
next.x = a.x+;
if(check(next.x))
{
next.step = a.step+;
map[next.x] = ;
Q.push(next);
}
next.x = a.x-;
if(check(next.x))
{
next.step = a.step+;
map[next.x] = ;
Q.push(next);
}
next.x = a.x*;
if(check(next.x))
{
next.step = a.step+;
map[next.x] = ;
Q.push(next);
}
}
return -;
} int main()
{
int ans;
while(~scanf("%d%d",&n,&k))
{
memset(map,,sizeof(map));
ans = bfs(n);
printf("%d\n",ans);
}
return ;
}
E - Find The Multiple 

Given a positive integer n, write a program to find out a nonzero multiple m of n whose decimal representation contains only the digits 0 and 1. You may assume that n is not greater than 200 and there is a corresponding m containing no more than 100 decimal digits.

BFS搜素,两个状态是ans = ans*10+1,ans*=10,注意边界检查

#include <stdio.h>
int n,flat;
unsigned long long b;
void DFS(unsigned long long a,int step)
{
if(flat||step==)
{
return ;
}
if(a%n==)
{
printf("%I64u\n",a);
flat=;
return ;
}
else
{
DFS(a*,step+);
DFS(a*+,step+);
}
return ;
}
int main()
{
while(scanf("%d",&n),n)
{
flat=;
DFS(,);
}
return ;
}

kuangbin专题总结一 简单搜索的更多相关文章

  1. [kuangbin带你飞]专题一 简单搜索 题解报告

    又重头开始刷kuangbin,有些题用了和以前不一样的思路解决.全部题解如下 点击每道题的标题即可跳转至VJ题目页面. A-棋盘问题 棋子不能摆在相同行和相同列,所以我们可以依此枚举每一行,然后标记每 ...

  2. 简单搜索 kuangbin C D

    C - Catch That Cow POJ - 3278 我心态崩了,现在来回顾很早之前写的简单搜索,好难啊,我怎么写不出来. 我开始把这个写成了dfs,还写搓了... 慢慢来吧. 这个题目很明显是 ...

  3. ElasticSearch 5学习(4)——简单搜索笔记

    空搜索: GET /_search hits: total 总数 hits 前10条数据 hits 数组中的每个结果都包含_index._type和文档的_id字段,被加入到_source字段中这意味 ...

  4. nyoj 284 坦克大战 简单搜索

    题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=284 题意:在一个给定图中,铁墙,河流不可走,砖墙走的话,多花费时间1,问从起点到终点至少 ...

  5. 分布式搜索ElasticSearch构建集群与简单搜索实例应用

    分布式搜索ElasticSearch构建集群与简单搜索实例应用 关于ElasticSearch不介绍了,直接说应用. 分布式ElasticSearch集群构建的方法. 1.通过在程序中创建一个嵌入es ...

  6. solr简单搜索案例

    solr简单搜索案例 使用Solr实现电商网站中商品信息搜索功能,可以根据关键字搜索商品信息,根据商品分类.价格过滤搜索结果,也可以根据价格进行排序,实现分页. 架构分为: 1. solr服务器 2. ...

  7. 和我一起打造个简单搜索之SpringDataElasticSearch入门

    网上大多通过 java 操作 es 使用的都是 TransportClient,而介绍使用 SpringDataElasticSearch 的文章相对比较少,笔者也是摸索了许久,接下来本文介绍 Spr ...

  8. 和我一起打造个简单搜索之SpringDataElasticSearch关键词高亮

    前面几篇文章详细讲解了 ElasticSearch 的搭建以及使用 SpringDataElasticSearch 来完成搜索查询,但是搜索一般都会有搜索关键字高亮的功能,今天我们把它给加上. 系列文 ...

  9. 和我一起打造个简单搜索之Logstash实时同步建立索引

    用过 Solr 的朋友都知道,Solr 可以直接在配置文件中配置数据库连接从而完成索引的同步创建,但是 ElasticSearch 本身并不具备这样的功能,那如何建立索引呢?方法其实很多,可以使用 J ...

随机推荐

  1. 在Autodesk应用程序商店发布基于浏览器的Web应用程序

    你一定已经听说过Autodesk应用程序商店了,通过Autodesk应用程序商店,你可以免费下载或购买来自全球的优秀开发者发布的应用程序,来帮助你更快更方便的完成你的工作.而且作为开发者,您也可以在A ...

  2. android 动画效果

    动画资源 一.分类: (一).概要:         3.0以前,android支持两种动画模式,补间动画(tween animation),帧动画(frame animation),在android ...

  3. XML总结

    1. XML 基本概念 扩展标记语言 (Extensible Markup Language, XML) ,用于标记电子文件使其具有结构性的标记语言,可以用来标记数据.定义数据类型,是一种允许用户对自 ...

  4. RunTime&RunLoop初见

    什么是runtime 1> runtime是一套底层的c语言API(包括很多强大实用的c语言类型,c语言函数); 2>实际上,平时我们编写的oc代码,底层都是基于runtime实现的 也就 ...

  5. iOS Xcode, 解决“Could not insert new outlet connection: Could not find any information for the class named”的问题。

    在Xcode中,我们可以在StoryBoard编辑界面或者是xib编辑界面中通过“Control键+拖拽“的方式将某个界面元素和对应的代码文件连接起来,在代码文件中创建outlet. 不过,如果你的运 ...

  6. 编写Javascript类库(jQuery版) - 进阶者系列 - 学习者系列文章

    这些年主要关注于项目管理方面的工作,编码就比较少了.这几天比较空闲,就想把原来的经验沉淀下来,一个是做好记录,以后如果忘记了还能尽快找回来,第二个是写写博文,算是练练手笔吧. 言归正传,这次写的是Ja ...

  7. C#中Split用法

    1.用字符串分隔:  using System.Text.RegularExpressions; string str="aaajsbbbjsccc"; string[] sArr ...

  8. Red Hat Enterprise Linux 各个版本以及发布日期

    Red Hat Enterprise Linux 7 Release/Update General Availability Date redhat-release Errata Date* Kern ...

  9. 利用 filter 机制 给 静态资源 url 加上时间戳,来防止js和css文件的缓存,利于开发调试

    直接上代码: public class WeiXinFilter implements Filter{ private static Logger logger = LoggerFactory.get ...

  10. WPF 自定义进度条

    WPF设计界面过程中,有时需要设计一种可以手动滑动修改并实时显示的进度条 进度条,效果如下: 颜色.图标.节点什么的,都可以重新替换. 前端XAML代码: <UserControl x:Clas ...