国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

ACM 廣搜 貪吃蛇&&Maze

2019-11-11 01:41:02
字體:
來源:轉載
供稿:網友

額最近做的好像都是廣搜也...

貪吃蛇是我很早以前就接觸,現在才能看懂的..十分尷尬,

然后這兩題類型一樣,我就寫一起啦~

都是四個方向,然后把走的方向存下來最后一起輸出。

TOJ 3128 簡單版貪吃蛇

描述

現在我們來簡化蛇的身體,假設初始化的時候蛇的身體只有一個頭而已(呵,當然是假設的),那么蛇去吃食物的時候就不必考慮碰到自己的身體了。例:

5 5.....S....###.#E....#####

那么從S到E最短的走法是EEESSWWW。說明:N(north),S(south),W(west),E(east)。如果吃不到食物就輸出Can't eat it!注意:路徑是最短的走的。

輸入

輸入數據有多組,每組輸入的第一行是兩個正整數R,C,表示行和列,3=<R,C<=100,下面輸入R行C列的矩陣。

輸入保證合法。

輸出

每行輸出最短的走法。

樣例輸入

樣例輸出

#include <cstring>#include <iostream>#include <queue>#include <cstdio>using namespace std;int n,m,dir[4][2]= {-1,0,1,0,0,-1,0,1};int vis[100][100],ex,ey,sx,sy,flag;char map[100][100];struct node{    int x;    int y;    char c[101];};void bfs(int x,int y){    node a,p,b;    int i;    vis[x][y]=1;    a.x=x;    a.y=y;    memset(a.c,'/0',sizeof(a.c));    queue<node>Q;    Q.push(a);    while(!Q.empty())    {        b=Q.front();        Q.pop();        if(map[b.x][b.y]=='E')        {            flag=1;            PRintf("%s/n",b.c);            return;        }        for(i=0;i<4;i++)        {            p=b;            p.x=p.x+dir[i][0];            p.y=p.y+dir[i][1];            if(map[p.x][p.y]!='#'&&p.x>=0&&p.y>=0&&p.x<n&&p.y<m&&vis[p.x][p.y]==0)            {                vis[p.x][p.y]=1;                if(i==0) strcat(p.c,"N");                if(i==1) strcat(p.c,"S");                if(i==2) strcat(p.c,"W");                if(i==3) strcat(p.c,"E");                Q.push(p);            }        }    }}int main(){    int i,j;    while(cin>>n>>m)    {        memset(vis,0,sizeof(vis));        for(i=0;i<n;i++)            for(j=0;j<m;j++)            {                cin>>map[i][j];                if(map[i][j]=='S')                sx=i, sy=j;            }        flag=0;        bfs(sx,sy);        if(flag==0)        printf("Can't eat it!/n");    }    return 0;}

TOJ 3973 Maze Again

描述

The maze is the same as problem D, and I strongly recommend you solve the previous one first because it.s easier than this.

This time, we want you design the command for our poor robot to move from where it is to its destination. The command sequence.s length should be the shortest. If several solutions exist, find the lexicographically minimum one.

Lexicographical sequence is the order in one dictionary. For example, “cat” is less than “do”, and “do” is less than “dog”.

輸入

The first line contains a single integer T, indicating the number of test cases.

Each test case begins with one integer N (1 <= N <= 50), indicating the size of the maze. The followed N lines are N strings whose length is also N, indicating the maze.

輸出

For each case, output a command string if there is a solution, otherwise output -1.

樣例輸入

樣例輸出

題目意思和貪吃蛇差不多,但是這題要注意DLRU要按字典序,所以一開始的dir要寫好。

#include <cstring>#include <iostream>#include <queue>#include <cstdio>using namespace std;int n,dir[4][2]= {1,0,0,-1,0,1,-1,0};//字典序int vis[51][51],ex,ey,sx,sy,flag;char map[51][51];struct node{    int x;    int y;    char c[101];};void bfs(int x,int y){    node a,p,b;    int i;    vis[x][y]=1;    a.x=x;    a.y=y;    memset(a.c,'/0',sizeof(a.c));    queue<node>Q;    Q.push(a);    while(!Q.empty())    {        b=Q.front();        Q.pop();        if(map[b.x][b.y]=='T')        {            flag=1;            printf("%s/n",b.c);            return;        }        for(i=0;i<4;i++)        {            p=b;            p.x=p.x+dir[i][0];            p.y=p.y+dir[i][1];            if(map[p.x][p.y]!='#'&&p.x>=0&&p.y>=0&&p.x<n&&p.y<n&&vis[p.x][p.y]==0)            {                vis[p.x][p.y]=1;                if(i==0) strcat(p.c,"D");                if(i==1) strcat(p.c,"L");                if(i==2) strcat(p.c,"R");                if(i==3) strcat(p.c,"U");                Q.push(p);            }        }    }}int main(){    int i,j,o;    cin>>o;    while(o--)    {		cin>>n;        memset(vis,0,sizeof(vis));        for(i=0;i<n;i++)            for(j=0;j<n;j++)            {                cin>>map[i][j];                if(map[i][j]=='S')                sx=i,sy=j;            }        flag=0;        bfs(sx,sy);        if(flag==0)        printf("-1/n");    }    return 0;}


上一篇:二分圖最大匹配

下一篇:Map總結

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 永济市| 大同市| 丹凤县| 遂溪县| 阿拉善左旗| 慈利县| 尼勒克县| 加查县| 广元市| 阿拉善右旗| 枝江市| 东乡族自治县| 临沭县| 晋州市| 和田县| 吴忠市| 都昌县| 龙井市| 阳城县| 华安县| 怀仁县| 德清县| 上杭县| 达拉特旗| 长泰县| 翁源县| 象山县| 荥阳市| 丰原市| 三穗县| 景东| 台中市| 武陟县| 通江县| 革吉县| 安塞县| 三台县| 河西区| 房产| 襄城县| 洛浦县|