<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                ThinkChat2.0新版上線,更智能更精彩,支持會話、畫圖、視頻、閱讀、搜索等,送10W Token,即刻開啟你的AI之旅 廣告
                原題鏈接:[http://acm.hdu.edu.cn/showproblem.php?pid=1072](http://acm.hdu.edu.cn/showproblem.php?pid=1072) **一:原題內容** Problem Description 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. Input 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. Output 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. Sample Input ~~~ 3 3 3 2 1 1 1 1 0 1 1 3 4 8 2 1 1 0 1 1 1 0 1 0 4 1 1 0 4 1 1 0 0 0 0 0 0 1 1 1 1 4 1 1 1 3 5 8 1 2 1 1 1 1 1 4 1 0 0 0 1 0 0 1 1 4 1 0 1 1 0 1 1 0 0 0 0 3 0 1 1 1 4 1 1 1 1 1 ~~~ Sample Output ~~~ 4 -1 13 ~~~ **二:分析理解** 其實就是一個迷宮問題,講述的是一個人做了一個噩夢,身處迷宮險境,只有一個出口,在規定時間內走出即可,此題的新穎處在于有個炸彈時間重設點,需要讀者注意。 **三:AC代碼** 方法一:BFS 參考自?[http://blog.csdn.net/jw72jw/article/details/5803926](http://blog.csdn.net/jw72jw/article/details/5803926) ~~~ #define _CRT_SECURE_NO_DEPRECATE #define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES 1 #include<iostream> #include<queue> using namespace std; struct Node { int x; int y; int step;//走過的步數 int time;//剩余的時間 }start; int maze[10][10];//迷宮 int mark[10][10];//標記走當前步后剩余的時間 int dir[4][2] = { 0,1,1,0,0,-1,-1,0 };//下右上左,逆時針四個方向 int T, N, M; void BFS(); int main() { cin >> T; while (T--) { cin >> N >> M; for (int i = 0; i < N; i++)//數據輸入 { for (int j = 0; j < M; j++) { cin >> maze[i][j]; mark[i][j] = 0;//初始化為0 if (maze[i][j] == 2)//找到起點 { start.x = i; start.y = j; start.step = 0; start.time = 6; } } } BFS(); } return 0; } void BFS() { queue<Node> q; q.push(start); mark[start.x][start.y] = start.time; Node p, temp; while (!q.empty()) { p = q.front(); q.pop(); for (int i = 0; i < 4; i++) { temp = p; temp.x += dir[i][0]; temp.y += dir[i][1]; if (temp.x >= N || temp.x <= -1 || temp.y >= M || temp.y <= -1 || maze[temp.x][temp.y] == 0) continue; temp.step++; temp.time--; if (maze[temp.x][temp.y] == 3)//出口 { cout << temp.step << endl; return; } else if (maze[temp.x][temp.y] == 4)//炸彈時間重設點 { temp.time = 6; } if (temp.time >= 2 && mark[temp.x][temp.y] < temp.time)//剩余的時間大于等于2且 { mark[temp.x][temp.y] = temp.time; q.push(temp); } } } cout << "-1\n"; } ~~~ 方法二:DFS
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看