日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Stealing Harry Potter's Precious HDU - 4771 (状压+bfs)

發布時間:2023/12/16 编程问答 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Stealing Harry Potter's Precious HDU - 4771 (状压+bfs) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

 Harry Potter has some precious. For example, his invisible robe, his wand and his owl. When Hogwarts school is in holiday, Harry Potter has to go back to uncle Vernon’s home. But he can’t bring his precious with him. As you know, uncle Vernon never allows such magic things in his house. So Harry has to deposit his precious in the Gringotts Wizarding Bank which is owned by some goblins. The bank can be considered as a N × M grid consisting of N × M rooms. Each room has a coordinate. The coordinates of the upper-left room is (1,1) , the down-right room is (N,M) and the room below the upper-left room is (2,1)….. A 3×4 bank grid is shown below:
 

Some rooms are indestructible and some rooms are vulnerable. Goblins always care more about their own safety than their customers’ properties, so they live in the indestructible rooms and put customers’ properties in vulnerable rooms. Harry Potter’s precious are also put in some vulnerable rooms. Dudely wants to steal Harry’s things this holiday. He gets the most advanced drilling machine from his father, uncle Vernon, and drills into the bank. But he can only pass though the vulnerable rooms. He can’t access the indestructible rooms. He starts from a certain vulnerable room, and then moves in four directions: north, east, south and west. Dudely knows where Harry’s precious are. He wants to collect all Harry’s precious by as less steps as possible. Moving from one room to another adjacent room is called a ‘step’. Dudely doesn’t want to get out of the bank before he collects all Harry’s things. Dudely is stupid.He pay you $1,000,000 to figure out at least how many steps he must take to get all Harry’s precious.
Input
  There are several test cases.
  In each test cases:
  The first line are two integers N and M, meaning that the bank is a N × M grid(0< N,M <= 100).
  Then a N×M matrix follows. Each element is a letter standing for a room. ‘#’ means a indestructible room, ‘.’ means a vulnerable room, and the only ‘@’ means the vulnerable room from which Dudely starts to move.
  The next line is an integer K ( 0 < K <= 4), indicating there are K Harry Potter’s precious in the bank.
  In next K lines, each line describes the position of a Harry Potter’s precious by two integers X and Y, meaning that there is a precious in room (X,Y).
  The input ends with N = 0 and M = 0
Output
  For each test case, print the minimum number of steps Dudely must take. If Dudely can’t get all Harry’s things, print -1.

大致題意:給定n*m的地圖 , #為墻 @為起點 ,下面K個坐標,求遍歷K個給定坐標,需要的最小步數。

思路:狀壓bfs

代碼如下

#include <iostream> #include <cmath> #include <algorithm> #include <cstring> #include <queue> using namespace std; #define ll long long int int dx[]={0,0,1,-1}; int dy[]={1,-1,0,0};struct node {int x,y,now,step;//now表示當前狀態,step表示到達點(x,y)的狀態為now時所需的最少步數 };int n,m; int sx,sy;//起點坐標 int k; int mp[110][110]; int vis[1<<4][110][110]; queue<node> que; int bfs() {while(!que.empty())que.pop();node p;p.x=sx;p.y=sy;p.now=mp[sx][sy];p.step=0;que.push(p);//將起點入隊while(!que.empty()){node p=que.front();que.pop();if(p.now==(1<<k)-1)//如果走到當前位置的時候已經路過k個點,返回結果return p.step;for(int i=0;i<4;i++){node q=p;q.x=p.x+dx[i];q.y=p.y+dy[i];q.step=p.step+1;if(mp[q.x][q.y]==-1) //該點是障礙點continue;if(q.x<1||q.x>n||q.y<1||q.y>m)//超出邊界continue;if(mp[q.x][q.y]>0&&(p.now&mp[q.x][q.y])==0)//該點是k個點之一且沒走過q.now=p.now|mp[q.x][q.y];//標記一下if(vis[q.now][q.x][q.y]==0){vis[q.now][q.x][q.y]=1;que.push(q);} }}return -1; } int main() { while(cin>>n>>m){if(!(n+m))break;memset(vis,0,sizeof(vis));char ch;for(int i=1;i<=n;i++)for(int j=1;j<=m;j++){cin>>ch;if(ch=='@'){mp[i][j]=0;sx=i;sy=j;}if(ch=='#'){mp[i][j]=-1;}if(ch=='.'){mp[i][j]=0;}}cin>>k;for(int i=1;i<=k;i++){int x,y;cin>>x>>y;mp[x][y]=1<<(i-1);//用二進制來壓縮狀態}printf("%d\n",bfs());}return 0; }

總結

以上是生活随笔為你收集整理的Stealing Harry Potter's Precious HDU - 4771 (状压+bfs)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。