poj-1321棋盘问题【bfs/回溯】
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 36385   Accepted: 17950

Description

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

Input

输入含有多组测试数据。 
每组数据的第一行是两个正整数,n k,用一个空格隔开,表示了将在一个n*n的矩阵内描述棋盘,以及摆放棋子的数目。 n <= 8 , k <= n 
当为-1 -1时表示输入结束。 
随后的n行描述了棋盘的形状:每行有n个字符,其中 # 表示棋盘区域, . 表示空白区域(数据保证不出现多余的空白行或者空白列)。 

Output

对于每一组数据,给出一行输出,输出摆放的方案数目C (数据保证C<2^31)。

Sample Input

  1. 2 1
  2. #.
  3. .#
  4. 4 4
  5. ...#
  6. ..#.
  7. .#..
  8. #...
  9. -1 -1

Sample Output

  1. 2
  2. 1

【分析】:建议学习回溯的时候对N皇后还有N皇后的变式好好学习一下,类N皇后真是学习回溯非常好的例题。

  1. 如在第i行第j列,遇到'#'号。那么接下来的处理就有两种情况了。
  2. 第一种:把i,j放入到一个数组C中,然后继续向第i+1行进行搜索,直到找到m个位置或者到了棋盘的边界
  3. 另一种:不选择第i行第j列的位置,然后继续向第i+1行进行搜索,直到找到m个位置或者到了棋盘的边界
  4.  
  5. 【代码】:
  1. #include <cmath>
  2. #include <cstdio>
  3. #include <cctype>
  4. #include <cstdlib>
  5. #include <cstring>
  6. #include <climits>
  7. #include <set>
  8. #include <map>
  9. #include <list>
  10. #include <deque>
  11. #include <queue>
  12. #include <stack>
  13. #include <bitset>
  14. #include <string>
  15. #include <vector>
  16. #include <numeric>
  17. #include <sstream>
  18. #include <iostream>
  19. #include <algorithm>
  20. #include <functional>
  21. using namespace std;
  22. typedef long long ll;
  23. #pragma comment(linker, "/STACK:102400000,102400000")
  24. #define Abs(x) ((x^(x >> 31))-(x>>31))
  25. #define Swap(a,b) (a^=b,b^=a,a^=b)
  26. #define PI acos(-1.0)
  27. #define INF 0x3f3f3f3f
  28. #define EPS 1e-8
  29. #define MOD 1000000007
  30. #define max_ 505
  31. #define maxn 200002
  32.  
  33. using namespace std;
  34.  
  35. int n,m;
  36. char s[][];//表示棋盘
  37. int c[];//表示每一列有没有摆放过棋子
  38. int tot,cnt;
  39.  
  40. void dfs(int cur)//cur表示当前所在行
  41. {
  42. if(cnt == m)//cnt表示当前所摆放棋子数目
  43. {
  44. tot++;
  45. return ;
  46. }
  47.  
  48. if(cur >= n)//超出搜索范围
  49. return ;
  50.  
  51. for(int j=;j<n;j++)
  52. {
  53. if(!c[j] && s[cur][j]=='#')//空白处并且还没有摆放棋子
  54. {
  55. c[j]=;
  56. cnt++;
  57. dfs(cur+);//搜索下一行
  58. c[j]=;//标记清除
  59. cnt--;
  60. }
  61. }
  62. dfs(cur+);//如果当前行没有可以摆放的位置 或者cnt已经等于m 但是还没有搜索完整个棋盘 将要继续搜索下一行
  63. }
  64. int main()
  65. {
  66. while(~scanf("%d%d",&n,&m))
  67. {
  68. if(n==-&&m==-) break;
  69. memset(c,,sizeof(c));//将标记初始化为0
  70. tot=cnt=;
  71. for(int i=;i<n;i++)
  72. {
  73. scanf("%s",&s[i]);
  74. }
  75. dfs();
  76. printf("%d\n",tot);
  77. }
  78. }

POJ - 2251 Dungeon Master 【三维dfs】

Description 
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? 
Input 
The input consists of a number of dungeons. Each dungeon description starts with a line containing three integers L, R and C (all limited to 30 in size). 
L is the number of levels making up the dungeon. 
R and C are the number of rows and columns making up the plan of each level. 
Then there will follow L blocks of R lines each containing C characters. Each character describes one cell of the dungeon. A cell full of rock is indicated by a ‘#’ and empty cells are represented by a ‘.’. Your starting position is indicated by ‘S’ and the exit by the letter ‘E’. There’s a single blank line after each level. Input is terminated by three zeroes for L, R and C.

Output 
Each maze generates one line of output. If it is possible to reach the exit, print a line of the form 
Escaped in x minute(s).

where x is replaced by the shortest time it takes to escape. 
If it is not possible to escape, print the line 
Trapped!

Sample Input

  1. 3 4 5
  2. S....
  3. .###.
  4. .##..
  5. ###.#
  6.  
  7. #####
  8. #####
  9. ##.##
  10. ##...
  11.  
  12. #####
  13. #####
  14. #.###
  15. ####E
  16.  
  17. 1 3 3
  18. S##
  19. #E#
  20. ###
  21.  
  22. 0 0 0

Sample Output

  1. Escaped in 11 minute(s).
  2. Trapped!

【题意】:给出一三维空间的地牢,要求求出由字符'S'到字符'E'的最短路径

移动方向可以是上,下,左,右,前,后,六个方向

每移动一次就耗费一分钟,要求输出最快的走出时间。

不同L层的地图,相同RC坐标处是连通的

【代码】:

  1. #include <cmath>
  2. #include <cstdio>
  3. #include <cctype>
  4. #include <cstdlib>
  5. #include <cstring>
  6. #include <climits>
  7. #include <set>
  8. #include <map>
  9. #include <list>
  10. #include <deque>
  11. #include <queue>
  12. #include <stack>
  13. #include <bitset>
  14. #include <string>
  15. #include <vector>
  16. #include <numeric>
  17. #include <sstream>
  18. #include <iostream>
  19. #include <algorithm>
  20. #include <functional>
  21. using namespace std;
  22. typedef long long ll;
  23. #pragma comment(linker, "/STACK:102400000,102400000")
  24. #define Abs(x) ((x^(x >> 31))-(x>>31))
  25. #define Swap(a,b) (a^=b,b^=a,a^=b)
  26. #define PI acos(-1.0)
  27. #define INF 0x3f3f3f3f
  28. #define EPS 1e-8
  29. #define MOD 1000000007
  30. #define max_ 505
  31. #define maxn 200002
  32.  
  33. using namespace std;
  34.  
  35. int n,m,k,x,y,z,sx,sy,sz,ex,ey,ez;
  36. char s[][][];//表示棋盘
  37. int vis[][][];//表示每一列有没有摆放过棋子
  38. int dir[][]={ {,,},{,,-},{-,,},{,,},{,-,},{,,} };
  39.  
  40. struct node
  41. {
  42. int x,y,z,step;
  43. };
  44.  
  45. int check(int x,int y,int z)
  46. {
  47. if(x< || y< || z< || x>=k || y>=n || z>=m)
  48. return ;
  49. else if(s[x][y][z] == '#')
  50. return ;
  51. else if(vis[x][y][z])
  52. return ;
  53. return ;
  54. }
  55.  
  56. int bfs()
  57. {
  58. //初始化
  59. node a,tmp; queue<node> q;
  60. a.x = sx,a.y = sy,a.z = sz,a.step = ;
  61. vis[sx][sy][sz]=;
  62.  
  63. q.push(a);
  64.  
  65. while(!q.empty())
  66. {
  67. a=q.front();
  68. q.pop();
  69. if(a.x==ex && a.y==ey && a.z==ez)
  70. return a.step;
  71.  
  72. for(int i=;i<;i++)
  73. {
  74. tmp = a;
  75. tmp.x=a.x+dir[i][];
  76. tmp.y=a.y+dir[i][];
  77. tmp.z=a.z+dir[i][];
  78. if(check(tmp.x,tmp.y,tmp.z))
  79. continue;
  80. vis[tmp.x][tmp.y][tmp.z]=;
  81. tmp.step=a.step+;
  82. q.push(tmp);
  83. }
  84. }
  85. return ;
  86. }
  87.  
  88. int main()
  89. {
  90. int i,j,r;
  91. while(scanf("%d%d%d",&k,&n,&m),n+m+k)
  92. {
  93. for(i = ; i<k; i++)
  94. {
  95. for(j = ; j<n; j++)
  96. {
  97. scanf("%s",s[i][j]);
  98. for(r = ; r<m; r++)
  99. {
  100. if(s[i][j][r] == 'S')
  101. {
  102. sx = i,sy = j,sz = r;
  103. }
  104. else if(s[i][j][r] == 'E')
  105. {
  106. ex = i,ey = j,ez = r;
  107. }
  108. }
  109. }
  110. }
  111. memset(vis,,sizeof(vis));
  112. int ans;
  113. ans = bfs();
  114. if(ans)
  115. printf("Escaped in %d minute(s).\n",ans);
  116. else
  117. printf("Trapped!\n");
  118. }
  119.  
  120. return ;
  121. }

poj 3278 【一维bfs】

Catch That Cow
Time Limit: 2000MS   Memory Limit: 65536K
Total Submissions: 71899   Accepted: 22632

Description

Farmer 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?

Input

Line 1: Two space-separated integers: N and K

Output

Line 1: The least amount of time, in minutes, it takes for Farmer John to catch the fugitive cow.

Sample Input

  1. 5 17

Sample Output

  1. 4

Hint

The fastest way for Farmer John to reach the fugitive cow is to move along the following path: 5-10-9-18-17, which takes 4 minutes.

Source

【分析】:给出2个数n和k,问从n经过+1或者-1或者*2能到达k的最小步数。分3个方向的一维BFS。注意n可以比k大,这时只有-1一种办法可以从n到达k,直接减就行了,还有要注意边界的判断。
【代码】:

  1. #include<cstdio>
  2. #include<iostream>
  3. #include<algorithm>
  4. #include<queue>
  5. #include<cstring>
  6.  
  7. using namespace std;
  8. #define maxn 100010
  9.  
  10. queue<int> q;
  11. int n,k;
  12. int vis[maxn];
  13. int step[maxn];//步数数组装总步数
  14.  
  15. int bfs(int n,int k)
  16. {
  17. ///////////////////////////
  18. memset(vis,,sizeof(vis));
  19. int now,nxt;
  20. step[n]=;//初始化步数为0
  21. vis[n]=;//标记最开始的节点被访问
  22. q.push(n);//起始节点入队
  23. ///////////////////////////
  24.  
  25. while(!q.empty())
  26. {
  27. now=q.front();
  28. q.pop();
  29.  
  30. //if(nxt==k) return step[nxt];
  31.  
  32. for(int i=;i<;i++) //遍历
  33. {
  34. if(i==) nxt=now+;
  35. else if(i==) nxt=now-;
  36. else if(i==) nxt=now*; //顺序无关
  37.  
  38. if(nxt<||nxt>maxn) continue;//越界
  39.  
  40. if(!vis[nxt]) //判重
  41. {
  42. vis[nxt]=;
  43. step[nxt]=step[now]+;
  44. q.push(nxt);
  45. }
  46.  
  47. if(nxt==k) return step[nxt];//找到
  48.  
  49. }
  50. }
  51. }
  52. int main()
  53. {
  54. int n,k;
  55. scanf("%d%d",&n,&k);
  56. if(n>=k)
  57. printf("%d\n",n-k);
  58. else
  59. printf("%d\n",bfs(n,k));
  60. return ;
  61. }

一维BFS

Find The Multiple  POJ - 1426

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.

Input

The input file may contain multiple test cases. Each line contains a value of n (1 <= n <= 200). A line containing a zero terminates the input.

Output

For each value of n in the input print a line containing the corresponding value of m. The decimal representation of m must not contain more than 100 digits. If there are multiple solutions for a given value of n, any one of them is acceptable.

Sample Input

  1. 2
  2. 6
  3. 19
  4. 0

Sample Output

  1. 10
  2. 100100100100100100
  3. 111111111111111111

【题意】:输入一个整数,求大于等于这个整数的且满足条件的最小值 ,条件是这个整数能整出输入的整数,且这个整数只能包括0和1。

【分析】:可以BFS/DFS。这题搜索的方向有两个而且它的下界不好确定。所以可以用迭代加深搜索的技巧.用一个maxed控制搜索的下界。或者根据无符号整型确定深度最多为19.起点必须为1.

【代码】:

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<cstdlib>
  4. #include<cstring>
  5. #include<math.h>
  6. #include<algorithm>
  7. #include<vector>
  8. #include<queue>
  9. #include<map>
  10.  
  11. using namespace std;
  12. #define LL long long
  13. int n;
  14. LL now;
  15. void bfs(int ans)
  16. {
  17. queue<LL> q;
  18. q.push(ans);
  19. while(!q.empty())
  20. {
  21. now = q.front();
  22. q.pop();
  23. if(now%n==)
  24. {
  25. cout<<now<<endl;
  26. return ;
  27. }
  28. q.push(now*);
  29. q.push(now*+);
  30. }
  31. }
  32. int main()
  33. {
  34. while(cin>>n,n)
  35. {
  36. bfs();
  37. }
  38. return ;
  39. }

BFS

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<cstdlib>
  4. #include<cstring>
  5. #include<math.h>
  6. #include<algorithm>
  7. #include<vector>
  8. #include<queue>
  9. #include<map>
  10.  
  11. using namespace std;
  12. #define ULL unsigned __int64
  13. int f,n;
  14. void dfs(ULL now,int s)
  15. {
  16. if(f) return;// 放在最前面
  17. if(now%n==)
  18. {
  19. cout<<now<<endl;
  20. f=;
  21. return;
  22. }
  23. if(s==) return; //因为unsigned __int64的范围是-9223372036854775808~9223372036854775807(10^19)与0~18446744073709551615(10^20)
  24. //为防止超出范围,循环深度应小于20
  25. dfs(now*,s+); //当前数字有两种选择方案,即下一个数选1或选0
  26. dfs(now*+,s+);
  27. }
  28. int main()
  29. {
  30. while(cin>>n,n)
  31. {
  32. f=;
  33. dfs(,);//首位数字必须为1
  34. }
  35. }

DFS

  1. #include<cstdio>
  2. #include<algorithm>
  3. using namespace std;
  4. long long n,maxed;
  5. long long s;
  6. bool flag;
  7. void dfs(long long i,int step)
  8. {
  9. if(flag) return;
  10. if(step>=maxed) return;//当当前的递归深度达到上界后就return;
  11. if(i%n==)
  12. {
  13. printf("%lld\n",i);
  14. flag=true;
  15. return;
  16. }
  17. dfs(i*,step+);
  18. dfs(i*+,step+);
  19. }
  20.  
  21. int main()
  22. {
  23. while(~scanf("%d",&n)&&n)
  24. {
  25. flag=false;
  26. for(maxed=;;++maxed)//让第一个搜不到就结束
  27. {
  28. if(flag)
  29. break;
  30. dfs(,);
  31. }
  32. }
  33. }

DFS-迭代加深

kuangbin系列【简单搜索】的更多相关文章

  1. kuangbin专题简单搜索题目几道题目

    1.POJ1321棋盘问题 Description 在一个给定形状的棋盘(形状可能是不规则的)上面摆放棋子,棋子没有区别.要求摆放时任意的两个棋子不能放在棋盘中的同一行或者同一列,请编程求解对于给定形 ...

  2. kuangbin专题——简单搜索

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

  3. 简单搜索 kuangbin C D

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

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

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

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

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

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

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

  7. 和我一起打造个简单搜索之IK分词以及拼音分词

    elasticsearch 官方默认的分词插件,对中文分词效果不理想,它是把中文词语分成了一个一个的汉字.所以我们引入 es 插件 es-ik.同时为了提升用户体验,引入 es-pinyin 插件.本 ...

  8. 和我一起打造个简单搜索之ElasticSearch集群搭建

    我们所常见的电商搜索如京东,搜索页面都会提供各种各样的筛选条件,比如品牌.尺寸.适用季节.价格区间等,同时提供排序,比如价格排序,信誉排序,销量排序等,方便了用户去找到自己心里理想的商品. 站内搜索对 ...

  9. 和我一起打造个简单搜索之ElasticSearch入门

    本文简单介绍了使用 Rest 接口,对 es 进行操作,更深入的学习,可以参考文末部分. 环境 本文以及后续 es 系列文章都基于 5.5.3 这个版本的 elasticsearch ,这个版本比较稳 ...

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

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

随机推荐

  1. 新浪微博API Oauth2.0 认证

    原文链接: http://rsj217.diandian.com/post/2013-04-17/40050093587 本意是在注销账号前保留之前的一些数据.决定用python 爬取收藏.可是未登录 ...

  2. USACO Section2.2 Party Lamps 解题报告 【icedream61】

    lamps解题报告------------------------------------------------------------------------------------------- ...

  3. python学习笔记十七:base64及md5编码

    一.Python Base64编码 Python中进行Base64编码和解码要用base64模块,代码示例: #-*- coding: utf-8 -*- import base64 str = 'c ...

  4. ehcache + spring 整合以及配置说明 ,附带整合问题 (已解决)

    新做的项目,因为流量不大 就是一个征信平台,高峰流量不多,但缓存是必须的,cache到server上就可以,不需要额外的memcache.redis之类的东西. 但是遇到一个大坑,事情是这样的: 通过 ...

  5. sources-t.list

    deb http://debian.ustc.edu.cn/ubuntu/ trusty main multiverse restricted universe deb http://debian.u ...

  6. [转载]kd tree

    [本文转自]http://www.cnblogs.com/eyeszjwang/articles/2429382.html k-d树(k-dimensional树的简称),是一种分割k维数据空间的数据 ...

  7. Java的HttpClient的实现

    HttpClient的概念就是模仿浏览器请求服务端内容,也可以做App和Server之间的链接. 这个是关于Java的HttpClient的简单实例,其实java本身也可以通过自己的net包去做,但是 ...

  8. shell之一些测试脚本

    比较文件有无修改,通过修改时间判别 # !/bin/bash dir=$ for file in `ls $dir` do if [ -d $dir/$file ] then echo $file i ...

  9. SQL 基础笔记(二):进阶查询

    本笔记整理自<SQL 基础教程>.<MySQL 必知必会>和网上资料.个人笔记不保证正确. 一.复杂查询 视图 将 SELECT 查询包装成一个虚拟表,该虚拟表就被称为视图.( ...

  10. (总结)统计Apache或Nginx访问日志里的独立IP访问数量的Shell

    1.把IP数量直接输出显示:cat access_log_2011_06_26.log |awk '{print $1}'|uniq -c|wc -l 2.把IP数量输出到文本显示:cat acces ...