1.链接地址:
http://bailian.openjudge.cn/practice/2802
http://poj.org/problem?id=1101
2.题目:
- 总时间限制:
- 1000ms
- 内存限制:
- 65536kB
- 描述
- 一天早上,你起床的时候想:“我编程序这么牛,为什么不能靠这个赚点小钱呢?”因此你决定编写一个小游戏。
游戏在一个分割成w * h个正方格子的矩形板上进行。如图所示,每个正方格子上可以有一张游戏卡片,当然也可以没有。
当下面的情况满足时,我们认为两个游戏卡片之间有一条路径相连:
路径只包含水平或者竖直的直线段。路径不能穿过别的游戏卡片。但是允许路径临时的离开矩形板。下面是一个例子:
这里在 (1, 3)和 (4, 4)处的游戏卡片是可以相连的。而在 (2, 3) 和 (3, 4) 处的游戏卡是不相连的,因为连接他们的每条路径都必须要穿过别的游戏卡片。
你现在要在小游戏里面判断是否存在一条满足题意的路径能连接给定的两个游戏卡片。- 输入
- 输入包括多组数据。一个矩形板对应一组数据。每组数据包括的第一行包括两个整数w和h (1 <= w, h <= 75),分别表示矩形板的宽度和长度。下面的h行,每行包括w个字符,表示矩形板上的游戏卡片分布情况。使用‘X’表示这个地方有一个游戏卡片;使用空格 表示这个地方没有游戏卡片。
之后的若干行上每行上包括4个整数x1, y1, x2, y2 (1 <= x1, x2 <= w, 1 <= y1, y2 <= h)。给出两个卡片在矩形板上的位置(注意:矩形板左上角的坐标是(1, 1))。输入保证这两个游戏卡片所处的位置是不相同的。如果一行上有4个0,表示这组测试数据的结束。
如果一行上给出w = h = 0,那么表示所有的输入结束了。- 输出
- 对每一个矩形板,输出一行“Board #n:”,这里n是输入数据的编号。然后对每一组需要测试的游戏卡片输出一行。这一行的开头是“Pair m: ”,这里m是测试卡片的编号(对每个矩形板,编号都从1开始)。接下来,如果可以相连,找到连接这两个卡片的所有路径中包括线段数最少的路径,输出“k segments.”,这里k是找到的最优路径中包括的线段的数目;如果不能相连,输出“impossible.”。
每组数据之后输出一个空行。- 样例输入
5 4 XXXXX X X XXX X XXX 2 3 5 3 1 3 4 4 2 3 3 4 0 0 0 0 0 0- 样例输出
Board #1: Pair 1: 4 segments. Pair 2: 3 segments. Pair 3: impossible.- 来源
- 翻译自Mid-Central European Regional Contest 1999的试题
3.思路:
优先队列+深度搜索
4.代码:
1 #include <iostream> 2 #include <cstdio> 3 #include <queue> 4 #include <vector> 5 #include <cstring> 6 7 using namespace std; 8 9 struct POINT 10 { 11 int x; 12 int y; 13 int direction; 14 int turn_count; 15 16 friend bool operator<(POINT p1,POINT p2) 17 { 18 return p1.turn_count > p2.turn_count; 19 } 20 21 }; 22 23 int idx_x[] = {-1,0,0,1}; 24 int idx_y[] = {0,-1,1,0}; 25 26 int main() 27 { 28 //freopen("C://input.txt","r",stdin); 29 30 int i,j,k; 31 32 int w,h; 33 cin >> w >> h; 34 35 int n = 1; 36 while(w != 0 || h != 0) 37 { 38 cout << "Board #" << n++ << ":" << endl; 39 40 cin.get(); 41 bool ***arr = new bool**[h + 2]; 42 bool **arr_save = new bool*[h + 2]; 43 for(i = 0; i <= h + 1; ++i) 44 { 45 arr[i] = new bool*[w + 2]; 46 for(j = 0;j <= w + 1; ++j) arr[i][j] = new bool[4]; 47 48 arr_save[i] = new bool[w + 2]; 49 memset(arr_save[i],0,sizeof(bool) * (w + 2)); 50 } 51 52 char ch; 53 for(i = 1; i <= h; ++i) 54 { 55 for(j = 1; j <= w; ++j) 56 { 57 ch = cin.get(); 58 if(ch == 'X') arr_save[i][j] = true; 59 } 60 cin.get(); 61 } 62 63 /*for(i = 1; i <= h; ++i) 64 { 65 for(j = 1; j <= w; ++j) 66 { 67 cout << arr_save[i][j] << " "; 68 } 69 cout << endl; 70 }*/ 71 72 int x1,y1,x2,y2; 73 cin >> x1 >> y1 >> x2 >> y2; 74 75 int m = 1; 76 while(x1 != 0 || y1 != 0 || x2 != 0 || y2 != 0) 77 { 78 cout << "Pair " << m++ << ": "; 79 80 if((arr_save[y1][x1] == false) || (arr_save[y2][x2] == false)) 81 { 82 cout << "impossible." << endl; 83 cin >> x1 >> y1 >> x2 >> y2; 84 continue; 85 } 86 87 88 priority_queue<POINT> pq_point; 89 90 for(i = 0; i <= h + 1; ++i) 91 { 92 for(j = 0; j <= w + 1; ++j) 93 { 94 for(k = 0; k < 4; ++k) 95 { 96 arr[i][j][k] = arr_save[i][j]; 97 } 98 } 99 } 100 101 102 for(i = 0; i < 4; ++i) 103 { 104 POINT point; 105 point.x = x1; 106 point.y = y1; 107 point.direction = -1; 108 point.turn_count = 0; 109 110 pq_point.push(point); 111 arr[y2][x2][i] = false; 112 113 114 } 115 116 int flag = -1; 117 while(!pq_point.empty()) 118 { 119 120 POINT point = pq_point.top(); 121 pq_point.pop(); 122 123 //cout << "(" << point.x << "," << point.y << "," << point.direction << "," << point.turn_count << ")"<< endl; 124 125 if(point.x == x2 && point.y == y2) {flag = point.turn_count; break;} 126 127 for(i = 0; i < 4; ++i) 128 { 129 int temp_x = point.x + idx_x[i]; 130 int temp_y = point.y + idx_y[i]; 131 132 if(temp_x < 0 || temp_x > w + 1 || temp_y < 0 || temp_y > h + 1) continue; 133 if(arr[temp_y][temp_x][i]) continue; 134 135 POINT p2; 136 p2.x = temp_x; 137 p2.y = temp_y; 138 p2.direction = i; 139 if(i == point.direction) p2.turn_count = point.turn_count; 140 else p2.turn_count = point.turn_count + 1; 141 pq_point.push(p2); 142 arr[temp_y][temp_x][i] = true; 143 } 144 } 145 146 if(flag == -1) cout << "impossible." << endl; 147 else cout << flag << " segments." << endl; 148 149 cin >> x1 >> y1 >> x2 >> y2; 150 } 151 152 for(i = 0; i <= h + 1; ++i) 153 { 154 for(j = 0; j <= w + 1; ++j) delete [] arr[i][j]; 155 delete [] arr[i]; 156 delete [] arr_save[i]; 157 } 158 delete [] arr; 159 delete [] arr_save; 160 161 cout << endl; 162 cin >> w >> h; 163 } 164 165 return 0; 166 }