搜索(題目)
阿新 • • 發佈:2019-03-15
size style while 左右 else ace != pop --
A.POJ_1321
考查DFS的一個循環中遞歸調用
1 #include<iostream> 2 #include<cstring> 3 4 using namespace std; 5 char a[10][10]; //記錄棋盤位置 6 int book[10]; //記錄一列是否已經放過棋子 7 int n, k; // k 為 需要放入的棋子數 8 int total, m; //total 是放棋子的方案數 ,m是已放入棋盤的棋子數目 9 10 voidDFS(int cur) 11 { 12 if (k == m) { 13 total++; 14 return; 15 } 16 if (cur >= n) //邊界 17 return; 18 for (int j = 0; j < n; j++) 19 if (book[j] == 0 && a[cur][j] == ‘#‘){ //判斷條件(為#才能在該處下棋) 20 book[j] = 1; //標記21 m++; 22 DFS(cur + 1); //到下一行 23 book[j] = 0; //改回來方便下一行的判斷 24 m--; 25 } 26 DFS(cur + 1); //到下一行 27 } 28 29 int main() 30 { 31 int i; 32 while ((cin >> n >> k) && n != -1&& k != -1){ 33 total = 0; 34 m = 0; 35 for (i = 0; i < n; i++) 36 cin >> a[i]; 37 // 以上內容都是輸入 38 memset(book, 0, sizeof(book)); // 對於每一組處理完了數據進行數組的清空 39 DFS(0); // 進行搜索 40 cout << total << endl; 41 } 42 return 0; 43 }
B.POJ_2251
PS:六個方向的BFS題
1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <queue> 5 #include <algorithm> 6 //bfs對於每一層的搜索都是很詳細的可以掃完所有 7 using namespace std; 8 9 char map[35][35][35]; // 用於建圖 10 int vis[35][35][35]; // 查詢數組 判斷該點是否被訪問了 11 int k, n, m, sx, sy, sz, ex, ey, ez; //k , n, m,題幹要求量; sx, sy, sz,開始坐標值;ex, ey, ez終點坐標值 12 int to[6][3] = { {1,0,0},{-1,0,0},{0,1,0},{0,-1,0},{0,0,1},{0,0,-1} }; // 方向向量坐標 13 // 前後左右上下不存在順序限制 14 15 struct node{ // 定義一個結構體 16 int x, y, z, step; // x,y,z 表示 node 聲明出來的點的 三個坐標的值 和 該點下的是第幾步 17 }; 18 19 int check(int x, int y, int z){ 20 // 若 1.越界 2.是障礙物 3.查詢過 該函數的返回值是 1 否則 則是 0; 21 if (x < 0 || y < 0 || z < 0 || x >= k || y >= n || z >= m) 22 return 1; 23 else if (map[x][y][z] == ‘#‘) 24 return 1; 25 else if (vis[x][y][z]) 26 return 1; 27 return 0; 28 } 29 30 int bfs(){ 31 int i; 32 node a, next; 33 queue<node> Q; 34 a.x = sx, a.y = sy, a.z = sz; // 從起點開始掃 35 a.step = 0; 36 vis[sx][sy][sz] = 1; 37 Q.push(a); // 把元素壓入隊列中 38 while (!Q.empty()){ // 如果隊列q為空就證明沒找到可以通過的路徑 39 a = Q.front(); // 取出隊列第一個元素 40 Q.pop(); // 刪去靠前元素 41 if (a.x == ex && a.y == ey && a.z == ez) 42 return a.step; // 如果掃到的該點與目標點相同則返回該點對應的步數 43 for (i = 0; i < 6; i++){ 44 cout << "a"; 45 cout << a.x << a.y << a.z << endl; 46 next = a; 47 next.x = a.x + to[i][0]; 48 next.y = a.y + to[i][1]; 49 next.z = a.z + to[i][2]; 50 // 通過方向向量值改變 51 cout << "next"; 52 cout << next.x << next.y << next.z << endl; 53 if (check(next.x, next.y, next.z)) 54 continue; // 如果下一步的點不和規範就不執行下面步驟 55 cout << "標記next"; 56 cout << next.x << next.y << next.z << endl; 57 vis[next.x][next.y][next.z] = 1; 58 next.step = a.step + 1; 59 Q.push(next); 60 } 61 } 62 return 0; 63 } 64 65 int main(){ 66 int i, j, r; 67 while (cin >> k >> n >> m, n + m + k){ // k為牢房個數n,m代表n行m列 68 for (i = 0; i < k; i++){ 69 for (j = 0; j < n; j++){ 70 cin >> map[i][j]; // 建圖 71 for (r = 0; r < m; r++){ // 掃一遍圖 找出起點與終點 72 if (map[i][j][r] == ‘S‘){ 73 sx = i, sy = j, sz = r; 74 } 75 else if (map[i][j][r] == ‘E‘){ 76 ex = i, ey = j, ez = r; 77 } 78 } 79 } 80 } 81 memset(vis, 0, sizeof(vis)); 82 int ans; 83 ans = bfs(); 84 if (ans) 85 cout << "Escaped in " << ans << " minute(s)." << endl; 86 else 87 cout << "Trapped!" << endl; 88 } 89 return 0; 90 }
搜索(題目)