[kuangbin帶你飛]專題一 簡單搜尋 題解報告
又重頭開始刷kuangbin,有些題用了和以前不一樣的思路解決。全部題解如下
點選每道題的標題即可跳轉至VJ題目頁面。
A-棋盤問題
棋子不能擺在相同行和相同列,所以我們可以依此列舉每一行,然後標記每一列是否走過,在此基礎上進行DFS即可。
程式碼如下:
1 #include <iostream> 2 #include <cstring> 3 using namespace std; 4 int n,m,sum; 5 char mp[10][10]; 6 int vis[10] = {0}; 7 8 void dfs(int r,intk){ 9 if(k == m){ 10 sum++; 11 return ; 12 } 13 for(int i = r; i < n; i++){ 14 for(int j = 0; j < n; j++){ 15 if(mp[i][j] == '#' && !vis[j]){ 16 vis[j] = 1; 17 dfs(i+1,k+1); 18 vis[j] = 0; 19 } 20 } 21 } 22 } 2324 int main(){ 25 while(cin>>n>>m && n > 0 && m > 0){ 26 memset(vis, 0, sizeof vis); 27 sum = 0; 28 for(int i = 0; i < n; i++){ 29 for(int j = 0; j < n; j++){ 30 cin>>mp[i][j]; 31 } 32 } 33 dfs(0,0); 34 cout << sum << endl;35 } 36 return 0; 37 }
B-Dungeon Master
題意就是給你一個三維的迷宮,從S走到E,判斷能否逃脫若能逃離則輸出最短時間。
裸BFS/DFS,只是多了兩個方向,向上走和向下走,我用的是BFS,程式碼如下:
1 #include <iostream> 2 #include <cstring> 3 #include <queue> 4 using namespace std; 5 6 int r,c,h; 7 char mp[35][35][35]; 8 bool vis[35][35][35]; 9 int sz,sx,sy,ez,ex,ey; 10 11 int fx[6][3] = {{1,0,0},{-1,0,0},{0,1,0},{0,-1,0},{0,0,-1},{0,0,1}}; 12 13 struct node{ 14 int z,x,y,t; 15 }; 16 17 bool check(int x,int y,int z){ 18 if(mp[z][x][y] == '#' || vis[z][x][y] || z < 0 || z >= h || x < 0 || x >= r || y < 0 || y >= c){ 19 return false; 20 } 21 vis[z][x][y] = 1; 22 return true; 23 } 24 25 int bfs(){ 26 memset(vis, false, sizeof vis); 27 queue<node> q; 28 q.push(node{sz,sx,sy,0}); 29 vis[sz][sx][sy] = 1; 30 while(!q.empty()){ 31 node now = q.front(); 32 q.pop(); 33 //cout << now.z << " " << now.x << " " << now.y << endl; 34 if(now.z == ez && now.x == ex && now.y == ey){ 35 return now.t; 36 } 37 for(int i = 0; i < 6; i++){ 38 int nx = now.x + fx[i][0]; 39 int ny = now.y + fx[i][1]; 40 int nz = now.z + fx[i][2]; 41 if(check(nx,ny,nz)){ 42 q.push(node{nz,nx,ny,now.t+1}); 43 } 44 } 45 } 46 return -1; 47 } 48 49 50 int main(){ 51 ios_base::sync_with_stdio(0); 52 while(cin >> h >> r >> c && r ){ 53 for(int k = 0; k < h; k++){ 54 for(int i = 0; i < r; i++){ 55 for(int j = 0; j < c; j++){ 56 cin>>mp[k][i][j]; 57 if(mp[k][i][j] == 'S'){ 58 sz = k,sx = i,sy = j; 59 } 60 else if(mp[k][i][j] == 'E'){ 61 ez = k,ex = i,ey = j; 62 } 63 } 64 } 65 } 66 int ret = bfs(); 67 if(ret == -1) 68 cout << "Trapped!" << endl; 69 else 70 cout << "Escaped in " << ret << " minute(s)." << endl; 71 72 } 73 return 0; 74 }
C-Catch That Cow
題意就是你現在在n位置處,牛在k位置處,你有下面三種走路方式,每次花費一分鐘,牛不會動,問抓到牛的最小時間。
- 走到x+1位置處
- 走到x-1位置處
- 走到x*2位置處
BFS模擬即可,注意判斷走到x*2時候,應該先判斷x*2是否越界再判斷vis[x*2]是否走過,可以用短路運算子&&實現,否則會造成RE,當然你也可以開成兩倍的 陣列空間來避免這種錯誤,但我還是推薦使用前者方式。
程式碼如下:
1 #include <iostream> 2 #include <cstring> 3 #include <queue> 4 using namespace std; 5 6 int n,k; 7 bool vis[100005]; 8 9 struct node{ 10 int s,t; 11 }; 12 13 int bfs(){ 14 memset(vis,0,sizeof vis); 15 queue<node> q; 16 q.push(node{n,0}); 17 vis[n] = 1; 18 while(!q.empty()){ 19 node now = q.front(); 20 q.pop(); 21 if(now.s == k) 22 return now.t; 23 if(now.s-1 >= 0 && !vis[now.s-1]){ 24 vis[now.s-1] = 1; 25 q.push(node{now.s-1,now.t+1}); 26 } 27 if(now.s+1 <= 100000 && !vis[now.s+1]){ 28 vis[now.s+1] = 1; 29 q.push(node{now.s+1,now.t+1}); 30 } 31 if(now.s*2 <= 100000 && !vis[now.s*2]){ 32 vis[now.s*2] = 1; 33 q.push(node{now.s*2,now.t+1}); 34 } 35 } 36 return 0; 37 } 38 39 int main(){ 40 ios_base::sync_with_stdio(0); 41 while(cin>>n>>k){ 42 cout << bfs() << endl; 43 } 44 return 0; 45 }
D-Fliptile
玩過關燈遊戲理解這個題就很簡單,n*m的矩陣,0代表燈關,1代表燈開,然後可以反轉某個燈的狀態,但是這個燈周圍四個方向的燈也會反轉,然後問如何吧所有燈全關掉,若是不可能則輸出IMPOSSIBLE,若是有多種情況請輸出字典序最小的那個操作矩陣。
思路就是列舉,如何列舉,首先我們可以列舉第一層的每種操作可能,若是上一層有燈沒關,這層的相應位置則必須反轉,這樣只要判斷最下面一層的燈是否全關了即可。
那麼我們需要對第一層列舉多少種狀態呢?答案是2^m種,為什麼呢,因為每層有m個燈,每種燈兩個狀態,所以就是2^m種操作方式,每種操作方式也就剛好對應了0——2^m-1中數的二進位制,
例如對於樣例,需要列舉0——15
0 = 0000
1 = 0001
……
15 = 1111
二進位制剛好就是第一層的操作方式,然後我們從第二層開始,判斷上一層是否還有狀態為燈開的燈,有則操作當前位置,再判斷最後一層是否全為燈關。
至於字典序處理,我們只需要數操作矩陣1的個數,找最小值即可,你可能會問相等的情況呢,因為我們是按0->2^m-1,所以若是前面的1個數和後面1個數相等,字典序一定是前面的更小,所以無需考慮。
程式碼如下:
1 #include <iostream> 2 #include <cstring> 3 #include <queue> 4 #include <vector> 5 #include <string> 6 #include <iomanip> 7 #include <cmath> 8 #include <climits> 9 using namespace std; 10 11 int n,m; 12 int mp[20][20],fp[20][20],vis[20][20]; 13 int fx[4][2] = {{1,0},{-1,0},{0,1},{0,-1}}; 14 15 void change(int i,int j){ 16 fp[i][j] ^= 1; 17 for(int k = 0; k < 4; k++){ 18 int ni = i + fx[k][0]; 19 int nj = j + fx[k][1]; 20 if(ni >= 0 && nj >= 0 && ni < n && nj < m){ 21 fp[ni][nj] ^= 1; 22 } 23 } 24 } 25 26 int dfs(int k){ 27 memcpy(fp, mp, sizeof fp); 28 memset(vis, 0, sizeof vis); 29 int tot = m-1,res = 0; 30 while(k || tot>=0){ 31 int t = k%2; 32 vis[0][tot] = t; 33 res+=t; 34 if(t == 1) 35 change(0,tot); 36 tot--; 37 k /= 2; 38 } 39 //cout << setw(3) << setfill('0') << *fp[0] << endl; 40 for(int i = 1; i < n; i++){ 41 for(int j = 0; j < m; j++){ 42 if(fp[i-1][j] == 1){ 43 vis[i][j] = 1; 44 res++; 45 change(i,j); 46 } 47 } 48 } 49 for(int j = 0; j < m; j++){ 50 if(fp[n-1][j] == 1) 51 return 15*15*2; 52 } 53 return res; 54 } 55 56 int main(){ 57 ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0); 58 while(cin>>n>>m){ 59 int ans[20][20]; 60 for(int i = 0; i < n; i++){ 61 for(int j = 0; j < m; j++){ 62 cin>>mp[i][j]; 63 } 64 } 65 int num = pow(2,m),minn = INT_MAX; 66 for(int i = 0; i < num; i++){ 67 int ret = dfs(i); 68 if(ret < minn){ 69 memcpy(ans, vis, sizeof vis); 70 minn = ret; 71 } 72 } 73 if(minn == 15*15*2) 74 cout << "IMPOSSIBLE" << endl; 75 else{ 76 for(int i = 0; i < n; i++){ 77 for(int j = 0; j < m; j++){ 78 if(j == 0) 79 cout << ans[i][j]; 80 else 81 cout << " " << ans[i][j]; 82 } 83 cout << endl; 84 } 85 } 86 } 87 return 0; 88 }
E-Find The Multiple
題意就是給你一個數n,然後讓你找到一個只由1和0構成的數x,使得x是n的倍數。
BFS遍歷即可,所有陣列都在long long範圍內有解,其實甚至都不需要BFS,直接依此列舉即可。
程式碼如下:
1 #include <iostream> 2 #include <cstring> 3 #include <queue> 4 #include <string> 5 using namespace std; 6 7 int n; 8 9 long long bfs(){ 10 queue<long long> q; 11 q.push(1); 12 while(!q.empty()){ 13 long long x = q.front(); 14 q.pop(); 15 if(x % n == 0){ 16 return x; 17 } 18 q.push(x*10); 19 q.push(x*10+1); 20 } 21 return 0; 22 } 23 24 int main(){ 25 while(cin>>n && n){ 26 cout << bfs() << endl; 27 } 28 return 0; 29 }
F-Prime Path
題意就是給你兩個數p1,p2,兩個數都是四位數且都是素數,現在要把p1變成p2,規則是每次只能變換某一位上的數,且保證變換過程中的數也是素數。求最小變換次數。
還是BFS撒,從最高位開始變換,列舉所有素數的變換情況直至找到p2位置,這題麻煩的是變一位的數。
程式碼如下:
1 #include <iostream> 2 #include <queue> 3 #include <algorithm> 4 #include <string> 5 #include <cstring> 6 #include <cmath> 7 using namespace std; 8 9 int a,b; 10 int sum = 0; 11 bool vis[10005]; 12 13 struct node{ 14 int x,s; 15 }; 16 17 int change(int k,int i,int j){ 18 return k - (int(k/pow(10,3-i))%10)*pow(10,3-i) + j*pow(10,3-i); 19 } 20 21 bool isprime(int n){ 22 if(n==2 || n==3) 23 return true; 24 if(n%6 != 1 && n%6 != 5) 25 return false; 26 float n_sqrt = floor(sqrt((float)n)); 27 for(int i = 5; i <= n_sqrt; i += 6) 28 if(n%(i) == 0 | n%(i+2) == 0) 29 return false; 30 return true; 31 } 32 33 int bfs(int k){ 34 vis[k] = 1; 35 queue<node> q; 36 q.push(node{k,0}); 37 while(!q.empty()){ 38 node now = q.front(); 39 //cout << now.x << endl; 40 q.pop(); 41 if(now.x == b) 42 return now.s; 43 for(int i = 0; i < 4; i++){ 44 for(int j = 9; j >= 0; j--){ 45 if(i == 0 && j == 0) break; 46 int t = change(now.x,i,j); 47 if(isprime(t) && !vis[t]){ 48 vis[t] = 1; 49 q.push(node{t,now.s+1}); 50 } 51 } 52 } 53 } 54 return 0; 55 } 56 57 int main(){ 58 int t; 59 cin>>t; 60 while(t--){ 61 memset(vis, 0, sizeof vis); 62 cin>>a>>b; 63 sum = bfs(a); 64 cout << sum << endl; 65 } 66 return 0; 67 }
G-Shuffle'm Up
給你兩個字串長度都為n的字串s1、s2,然後可以結合成題目圖中那種形狀,s2和s1交叉且s2的最下面一塊在結合後的形狀中還是最下面一塊,s1又變成結合後的串的前n個字元,s2變成後n個字元,判斷能否得到想要的字串並詢問最小變換次數。
主要考字串處理,程式碼如下:
1 #include <iostream> 2 #include <cstring> 3 #include <cmath> 4 #include <algorithm> 5 #include <map> 6 using namespace std; 7 8 string s1,s2,es; 9 int n; 10 map<string,int> vis; 11 12 string fun(string a,string b){ 13 string s = ""; 14 for(int i = 0; i < n; i++){ 15 s += b[i]; 16 s += a[i]; 17 } 18 return s; 19 } 20 21 int bfs(){ 22 int tot = 0; 23 while(1){ 24 tot ++; 25 string ss = fun(s1,s2); 26 //cout << ss << endl; 27 if(ss == es) 28 return tot; 29 if(!vis[ss]) 30 vis[ss] = 1; 31 else 32 break; 33 s1 = ss.substr(0,n); 34 s2 = ss.substr(n,n); 35 } 36 return -1; 37 } 38 39 int main(){ 40 int t; 41 cin>>t; 42 for(int tt = 1; tt <= t; tt++){ 43 cin>>n>>s1>>s2>>es; 44 cout << tt << ' ' << bfs() << endl; 45 } 46 return 0; 47 }
H-Pots
題意:有兩個壺,容量分別為A,B,現在想要C(C ≤ max(a,b))容量的水,然後可以相互倒水(只能倒到另一壺滿或者本壺倒完為止),倒空本壺,裝滿本壺。問操作次數(SPJ,不需要最小操作 次數)並且應該如何操作。
因為有SPJ存在,所以直接BFS就行了,主要麻煩的是如何儲存每次的操作。我是用一個vector<pair<char,int>>來實現,這樣會消耗很大的空間,但題目空間很充裕,所以這個做法沒有問題。
程式碼如下:
1 #include <iostream> 2 #include <cstring> 3 #include <cmath> 4 #include <algorithm> 5 #include <map> 6 #include <vector> 7 #include <queue> 8 using namespace std; 9 10 int a,b,c; 11 bool vis[105][105]; 12 13 struct node{ 14 int a,b; 15 vector< pair<char,int> > v; 16 }; 17 18 void print(node n){ 19 cout << n.v.size() << endl; 20 for(vector< pair<char,int> >::iterator it = n.v.begin(); it != n.v.end(); it++){ 21 if(it->first == 'f') 22 cout << "FILL(" << it->second << ")" << endl; 23 else if(it->first == 'd') 24 cout << "DROP(" << it->second << ")" << endl; 25 else if(it->first == 'p') 26 cout << "POUR(" << it->second << ',' << (it->second == 1?2:1) << ")" << endl; 27 } 28 return ; 29 } 30 31 void bfs(){ 32 memset(vis, 0, sizeof vis); 33 queue<node> q; 34 q.push(node{0,0}); 35 vis[a][b] = 1; 36 while(!q.empty()){ 37 node now = q.front(),nt; 38 //cout << now.a << ' ' << now.b << endl; 39 q.pop(); 40 if(now.a == c || now.b == c){ 41 print(now); 42 return ; 43 } 44 if(now.a != 0 && !vis[0][now.b]){ 45 vis[0][now.b] = 1; 46 nt = now; 47 nt.a = 0; 48 nt.v.push_back(make_pair('d',1)); 49 q.push(nt); 50 } 51 if(now.b != 0 && !vis[0][now.a]){ 52 vis[now.a][0] = 1; 53 nt = now; 54 nt.b = 0; 55 nt.v.push_back(make_pair('d',2)); 56 q.push(nt); 57 } 58 if(now.a != a && !vis[a][now.b]){ 59 vis[a][now.b] = 1; 60 nt = now; 61 nt.a = a; 62 nt.v.push_back(make_pair('f',1)); 63 q.push(nt); 64 } 65 if(now.b != b && !vis[b][now.a]){ 66 vis[now.a][b] = 1; 67 nt = now; 68 nt.b = b; 69 nt.v.push_back(make_pair('f',2)); 70 q.push(nt); 71 } 72 if(now.a > 0 && now.b != b){ 73 int tb = now.b+now.a >= b?b:now.b+now.a; 74 int ta = b-now.b >= now.a?0:now.a-b+now.b; 75 if(!vis[ta][tb]){ 76 vis[ta][tb] = 1; 77 nt = now; 78 nt.a = ta; 79 nt.b = tb; 80 nt.v.push_back(make_pair('p',1)); 81 q.push(nt); 82 } 83 } 84 if(now.a != a && now.b > 0){ 85 int ta = now.a+now.b >= a?a:now.a+now.b; 86 int tb = a-now.a >= now.b?0:now.b-a+now.a; 87 if(!vis[ta][tb]){ 88 vis[ta][tb] = 1; 89 nt = now; 90 nt.a = ta; 91 nt.b = tb; 92 nt.v.push_back(make_pair('p',2)); 93 q.push(nt); 94 } 95 } 96 } 97 cout << "impossible" << endl; 98 return ; 99 } 100 101 int main(){ 102 while(cin>>a>>b>>c){ 103 bfs(); 104 } 105 return 0; 106 }
I-Fire!
題意就是人在J位置處,火在F位置處,不一定只有一堆火,火每分鐘會向四周蔓延,人每分鐘可以走一格,問能否逃出以及最小逃跑時間。
做了一遍再對比了一下以前的程式碼,發現區別還是很大的,以前是人每走一格就去BFS使得火蔓延一次,現在的做法是BFS人到達每個出口的時間,再BFS火到達每個出口的時間,再判斷大小也就是判斷人能否在火之前到達出口。
兩份程式碼如下:
BEFORE(亂七八糟的巨集定義比較多= =):
1 #include <iostream> 2 #include <string> 3 #include <cstdio> 4 #include <cstdlib> 5 #include <sstream> 6 #include <iomanip> 7 #include <map> 8 #include <stack> 9 #include <deque> 10 #include <queue> 11 #include <vector> 12 #include <set> 13 #include <list> 14 #include <cstring> 15 #include <cctype> 16 #include <algorithm> 17 #include <iterator> 18 #include <cmath> 19 #include <bitset> 20 #include <ctime> 21 #include <fstream> 22 #include <limits.h> 23 #include <numeric> 24 25 using namespace std; 26 27 #define F first 28 #define S second 29 #define mian main 30 #define ture true 31 32 #define MAXN 1000000+5 33 #define MOD 1000000007 34 #define PI (acos(-1.0)) 35 #define EPS 1e-6 36 #define MMT(s) memset(s, 0, sizeof s) 37 typedef unsigned long long ull; 38 typedef long long ll; 39 typedef double db; 40 typedef long double ldb; 41 typedef stringstream sstm; 42 const int INF = 0x3f3f3f3f; 43 44 int n,m,t,jx,jy; 45 char mp[1005][1005]; 46 int vis[1005][1005]; 47 int fx[4][2] = {1,0,-1,0,0,-1,0,1}; 48 vector< pair<int,int> >q; 49 50 void init(){ 51 MMT(mp); 52 fill(vis[0],vis[0]+1005*1005,0); 53 q.clear(); 54 } 55 56 bool check(int x,int y){ 57 if(x < 0 || x >= n || y < 0 || y >= m || mp[x][y] == '#' || vis[x][y]) 58 return false; 59 return true; 60 } 61 62 int bfs(){ 63 queue< pair<int,int> >p; 64 queue< pair<int,int> >pf; 65 p.push(make_pair(jx,jy)); 66 int step = 0; 67 for(int i = 0, len = q.size(); i < len; i++){ 68 vis[q[i].F][q[i].S] = 1; 69 pf.push(q[i]); 70 } 71 vis[jx][jy] = 1; 72 while(!p.empty()){ 73 pair<int,int>nx = p.front(); 74 75 if(nx.F == 0 || nx.F == n-1 || nx.S == 0 || nx.S == m-1) 76 return vis[nx.F][nx.S]; 77 78 if(vis[nx.F][nx.S] > step) 79 step++; 80 if(vis[nx.F][nx.S] == step){ 81 while(!pf.empty()){ 82 pair<int,int>nf = pf.front(); 83 if(vis[nf.F][nf.S] > step) 84 break; 85 pf.pop(); 86 for(int i = 0; i < 4; i++){ 87 int nxx = nf.F + fx[i][0]; 88 int nxy = nf.S + fx[i][1]; 89 if(check(nxx,nxy)){ 90 vis[nxx][nxy] = vis[nf.F][nf.S] + 1; 91 pf.push(make_pair(nxx,nxy)); 92 } 93 } 94 } 95 } 96 p.pop(); 97 for(int i = 0; i < 4; i++){ 98 int nxx = nx.F + fx[i][0]; 99 int nxy = nx.S + fx[i][1]; 100 if(check(nxx,nxy)){ 101 vis[nxx][nxy] = vis[nx.F][nx.S] + 1; 102 p.push(make_pair(nxx,nxy)); 103 } 104 } 105 } 106 return -1; 107 } 108 109 int main(){ 110 ios_base::sync_with_stdio(false); 111 cout.tie(0); 112 cin.tie(0); 113 cin>>t; 114 while(t--){ 115 init(); 116 cin>>n>>m; 117 for(int i = 0; i < n; i++){ 118 for(int j = 0; j < m; j++){ 119 cin>>mp[i][j]; 120 if(mp[i][j] == 'J'){ 121 jx = i, jy = j; 122 } 123 if(mp[i][j] == 'F'){ 124 q.push_back(make_pair(i,j)); 125 } 126 } 127 } 128 int ret = bfs(); 129 if(ret > 0) 130 cout << ret << endl; 131 else 132 cout << "IMPOSSIBLE" << endl; 133 134 } 135 return 0; 136 }
NOW:
1 #include <iostream> 2 #include <cstring> 3 #include <cmath> 4 #include <algorithm> 5 #include <map> 6 #include <vector> 7 #include <climits> 8 #include <queue> 9 using namespace std; 10 11 int n,m; 12 char mp[1005][1005]; 13 int dis[1005][1005]; 14 int fdis[1005][1005]; 15 bool vis[1005][1005]; 16 int px,py; 17 int fx[4][2] = {{1,0},{-1,0},{0,-1},{0,1}}; 18 struct node{ 19 int x,y; 20 }; 21 22 queue<node> q[2]; 23 24 bool pass1(int x,int y){ 25 if(x < 0 || y < 0 || x >= n || y >= m || mp[x][y] != '.' || dis[x][y]) 26 return false; 27 return true; 28 } 29 30 bool pass2(int x,int y){ 31 if(x < 0 || y < 0 || x >= n || y >= m || mp[x][y] == '#' || fdis[x][y]) 32 return false; 33 return true; 34 } 35 36 void bfs(){ 37 while(!q[0].empty()){ 38 node now = q[0].front(); 39 q[0].pop(); 40 for(int i = 0; i < 4; i++){ 41 int nx = now.x + fx[i][0]; 42 int ny = now.y + fx[i][1]; 43 if(pass1(nx,ny)){ 44 q[0].push(node{nx,ny}); 45 dis[nx][ny] = dis[now.x][now.y]+1; 46 } 47 } 48 } 49 50 while(!q[1].empty()){ 51 node now = q[1].front(); 52 q[1].pop(); 53 for(int i = 0; i < 4; i++){ 54 int nx = now.x + fx[i][0]; 55 int ny = now.y + fx[i][1]; 56 if(pass2(nx,ny)){ 57 q[1].push(node{nx,ny}); 58 fdis[nx][ny] = fdis[now.x][now.y]+1; 59 } 60 } 61 } 62 } 63 64 int check(){ 65 int ans = INT_MAX; 66 for(int j = 0; j < m; j++){ 67 if(dis[0][j] > 0 && (fdis[0][j] > dis[0][j] || fdis[0][j] == 0)) 68 ans = min(ans,dis[0][j]); 69 if(dis[n-1][j] > 0 && (fdis[n-1][j] > dis[n-1][j] || fdis[n-1][j] == 0)) 70 ans = min(ans,dis[n-1][j]); 71 } 72 for(int j = 0; j < n; j++){ 73 if(dis[j][0] > 0 && (fdis[j][0] > dis[j][0] || fdis[j][0] == 0)) 74 ans = min(ans,dis[j][0]); 75 if(dis[j][m-1] > 0 && (fdis[j][m-1] > dis[j][m-1] || fdis[j][m-1] == 0)) 76 ans = min(ans,dis[j][m-1]); 77 } 78 if(ans == INT_MAX) 79 return -1; 80 else 81 return ans; 82 } 83 84 void init(){ 85 while(!q[0].empty()) q[0].pop(); 86 while(!q[1].empty()) q[1].pop(); 87 memset(dis, 0, sizeof dis); 88 memset(fdis, 0, sizeof fdis); 89 return ; 90 } 91 92 int main(){ 93 int t; 94 cin>>t; 95 while(t--){ 96 init(); 97 cin>>n>>m; 98 for(int i = 0; i < n; i++){ 99 for(int j = 0; j < m; j++){ 100 cin>>mp[i][j]; 101 if(mp[i][j] == 'J') 102 q[0].push(node{i,j}),dis[i][j] = 1; 103 if(mp[i][j] == 'F') 104 q[1].push(node{i,j}),fdis[i][j] = 1; 105 } 106 } 107 bfs(); 108 int ret = check(); 109 if(ret == -1) 110 cout << "IMPOSSIBLE" << endl; 111 else 112 cout << ret << endl; 113 } 114 return 0; 115 }
J-迷宮問題
這個我以前寫過一篇部落格https://www.cnblogs.com/xenny/p/9473555.html
然後再貼一下現在的程式碼吧:
1 #include <iostream> 2 #include <algorithm> 3 #include <cstring> 4 #include <queue> 5 #include <stack> 6 #include <vector> 7 using namespace std; 8 9 char mp[5][5]; 10 bool vis[5][5]; 11 int fx[4][2] = {{1,0},{-1,0},{0,1},{0,-1}}; 12 vector< pair<int,int> > ans(1,make_pair(0,0)); 13 bool pass(int x,int y){ 14 if(x < 0 || y < 0 || x >= 5 || y >= 5 || vis[x][y] || mp[x][y] == '1') 15 return false; 16 return true; 17 } 18 19 void print(vector< pair<int,int> > v){ 20 for(vector< pair<int,int> >::iterator it = v.begin(); it != v.end(); it++){ 21 cout << '(' << it->first << ", " << it->second << ')' << endl; 22 } 23 } 24 25 void dfs(int x,int y,vector< pair<int,int> > v){ 26 if(x == 4 && y == 4){ 27 if(ans.size() == 1 || v.size() < ans.size()) 28 ans = v; 29 return ; 30 } 31 for(int i = 0; i < 4; i++){ 32 int nx = x + fx[i][0]; 33 int ny = y + fx[i][1]; 34 if(pass(nx,ny)){ 35 vis[nx][ny] = 1; 36 v.push_back(make_pair(nx,ny)); 37 dfs(nx,ny,v); 38 v.erase(--v.end()); 39 vis[nx][ny] = 0; 40 } 41 } 42 } 43 44 int main(){ 45 memset(vis, 0, sizeof vis); 46 vis[0][0] = 1; 47 for(int i = 0; i < 5; i++){ 48 for(int j = 0; j < 5; j++){ 49 cin>>mp[i][j]; 50 } 51 } 52 dfs(0,0,ans); 53 print(ans); 54 return 0; 55 }
感覺現在寫的比以前的還是清晰明瞭了很多= =
K-Oil Deposits
很多人的搜尋入門題都是這個題目吧,很經典,就是問有幾塊油田,一塊油田的8個方向內有油田就看為連在一起。
把遍歷過的油田記為*號,都可以把vis陣列都省略掉。
程式碼如下:
1 #include <iostream> 2 #include <cstring> 3 #include <algorithm> 4 using namespace std; 5 6 int n,m; 7 char mp[105][105]; 8 int fx[8][2] = {{1,0},{-1,0},{0,1},{0,-1},{1,1},{1,-1},{-1,1},{-1,-1}}; 9 10 bool pass(int x,int y){ 11 if(x < 0 || y < 0 || x >= n || y >= m || mp[x][y] == '*') 12 return false; 13 return true; 14 } 15 16 void dfs(int x,int y){ 17 for(int i = 0; i < 8; i++){ 18 int nx = x + fx[i][0]; 19 int ny = y + fx[i][1]; 20 if(pass(nx,ny)){ 21 mp[nx][ny] = '*'; 22 dfs(nx,ny); 23 } 24 } 25 } 26 27 int main(){ 28 while(cin>>n>>m && n){ 29 int sum = 0; 30 for(int i = 0; i < n; i++){ 31 for(int j = 0; j < m; j++){ 32 cin>>mp[i][j]; 33 } 34 } 35 for(int i = 0; i < n; i++){ 36 for(int j = 0; j < m; j++){ 37 if(mp[i][j] == '@'){ 38 sum++; 39 dfs(i,j); 40 } 41 } 42 } 43 cout << sum << endl; 44 } 45 return 0; 46 }
L-非常可樂
和Pots那個題類似,也是列舉每種狀態,但是其實在搜尋還可以加上剪枝,例如s為奇數直接輸出NO,然後本題還有數學做法,可以自行百度,我不再給出。<