NYOJ 483 Nightmare 【廣搜】+【無標記】

來源:互聯網
上載者:User

標籤:nyoj 483

Nightmare時間限制:1000 ms  |  記憶體限制:65535 KB難度:4
描述
Ignatius had a nightmare last night. He found himself in a labyrinth with a time bomb on him. The labyrinth has an exit, Ignatius should get out of the labyrinth before the bomb explodes. The initial exploding time of the bomb is set to 6 minutes. To prevent the bomb from exploding by shake, Ignatius had to move slowly, that is to move from one area to the nearest area(that is, if Ignatius stands on (x,y) now, he could only on (x+1,y), (x-1,y), (x,y+1), or (x,y-1) in the next minute) takes him 1 minute. Some area in the labyrinth contains a Bomb-Reset-Equipment. They could reset the exploding time to 6 minutes.

Given the layout of the labyrinth and Ignatius‘ start position, please tell Ignatius whether he could get out of the labyrinth, if he could, output the minimum time that he has to use to find the exit of the labyrinth, else output -1.

Here are some rules:
1. We can assume the labyrinth is a 2 array.
2. Each minute, Ignatius could only get to one of the nearest area, and he should not walk out of the border, of course he could not walk on a wall, too.
3. If Ignatius get to the exit when the exploding time turns to 0, he can‘t get out of the labyrinth.
4. If Ignatius get to the area which contains Bomb-Rest-Equipment when the exploding time turns to 0, he can‘t use the equipment to reset the bomb.
5. A Bomb-Reset-Equipment can be used as many times as you wish, if it is needed, Ignatius can get to any areas in the labyrinth as many times as you wish.
6. The time to reset the exploding time can be ignore, in other words, if Ignatius get to an area which contain Bomb-Rest-Equipment, and the exploding time is larger than 0, the exploding time would be reset to 6.
輸入
The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow.
Each test case starts with two integers N and M(1<=N,Mm=8) which indicate the size of the labyrinth. Then N lines follow, each line contains M integers. The array indicates the layout of the labyrinth.
There are five integers which indicate the different type of area in the labyrinth:
0: The area is a wall, Ignatius should not walk on it.
1: The area contains nothing, Ignatius can walk on it.
2: Ignatius‘ start position, Ignatius starts his escape from this position.
3: The exit of the labyrinth, Ignatius‘ target position.
4: The area contains a Bomb-Reset-Equipment, Ignatius can delay the exploding time by walking to these areas.

輸出
For each test case, if Ignatius can get out of the labyrinth, you should output the minimum time he needs, else you should just output -1.

範例輸入
23 32 1 11 1 01 1 34 82 1 1 0 1 1 1 01 0 4 1 1 0 4 11 0 0 0 0 0 0 11 1 1 4 1 1 1 3
範例輸出
4-1
896378 長木 Nightmare Accepted 4 308 C/C++ 06-15 21:03:39
896368 長木 Nightmare WrongAnswer -- -- C/C++ 06-15 20:54:57
896363 長木 Nightmare WrongAnswer -- -- C/C++ 06-15 20:49:37
896360 長木 Nightmare WrongAnswer -- -- C/C++ 06-15 20:46:04
896339 長木 Nightmare WrongAnswer -- -- C/C++ 06-15 20:14:06
896333 長木 Nightmare WrongAnswer -- -- C/C++ 06-15 20:02:33
896306 長木 Nightmare WrongAnswer -- -- C/C++ 06-15 19:06:14

說多淚啊(┬_┬),之前幾次WA都是數組類比隊列時結果錯用成了棧。。

AC:

#include <stdio.h>#include <queue>using std::queue;int map[10][10], t, m, n, id;int mov[][2] = {1, 0, -1, 0, 0, 1, 0, -1};struct Node{int x, y, steps, time;} start;queue<Node> Q;int check(int i, int j){if(i < 0 || j < 0 || i >= m || j >= n)return 0;return map[i][j];}int BFS(){Node now, temp;while(!Q.empty()){now = Q.front();Q.pop();if(now.time == 1) continue; //cutfor(int i = 0; i < 4; ++i){temp = now;temp.x += mov[i][0];temp.y += mov[i][1];--temp.time; ++temp.steps;if(check(temp.x, temp.y)){if(map[temp.x][temp.y] == 3) return temp.steps;else if(map[temp.x][temp.y] == 4){ //防止無限次充電map[temp.x][temp.y] = 1; temp.time = 6;}Q.push(temp);}}}return -1;}int main(){scanf("%d", &t);while(t--){scanf("%d%d", &m, &n);start.steps = 0;start.time = 6;for(int i = 0; i < m; ++i)for(int j = 0; j < n; ++j){scanf("%d", &map[i][j]);if(map[i][j] == 2){start.x = i; start.y = j;}}while(!Q.empty()) Q.pop();Q.push(start);printf("%d\n", BFS());}return 0;}        
WA:

#include <stdio.h>int map[10][10], t, m, n, id;int mov[][2] = {-1, 0, 0, 1, 1, 0, 0, -1};struct Node{int x, y, steps, time;} Q[70], start;int check(int i, int j){if(i < 0 || j < 0 || i >= m || j >= n)return 0;return map[i][j];}int BFS(){Node now, temp;while(id){now = Q[--id]; //這哪是出隊啊,⊙﹏⊙b汗if(map[now.x][now.y] == 3) return now.steps;if(now.time == 1) continue; //cutfor(int i = 0; i < 4; ++i){temp = now;temp.x += mov[i][0];temp.y += mov[i][1];--temp.time; ++temp.steps;if(check(temp.x, temp.y)){if(map[temp.x][temp.y] == 4){ //防止無限次充電map[temp.x][temp.y] = 1; //不能賦值為0,否則可能無限迴圈temp.time = 6;}Q[id++] = temp;}}}return -1;}int main(){scanf("%d", &t);while(t--){scanf("%d%d", &m, &n);start.steps = id = 0;start.time = 6;for(int i = 0; i < m; ++i)for(int j = 0; j < n; ++j){scanf("%d", &map[i][j]);if(map[i][j] == 2){start.x = i; start.y = j;}}Q[id++] = start;printf("%d\n", BFS());}return 0;}



聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.