您的位置:首页 > 其它

ZOJ-1756 Robots

2013-05-12 09:42 211 查看
Robots

Time Limit: 2 Seconds      Memory Limit: 65536 KB

Your company provides robots that can be used to pick up litter from fields after sporting events and concerts. Before robots are assigned to a job, an aerial photograph of the field is marked with a grid. Each location in the grid that contains garbage is marked. All robots begin in the Northwest corner and end their movement in the Southeast corner. A robot can only move in two directions, either to the East or South. Upon entering a cell that contains garbage, the robot will pick it up before proceeding. Once a robot reaches its destination at the Southeast corner it cannot be repositioned or reused. Since your expenses are directly proportional to the number of robots used for a particular job, you are interested in finding the minimum number of robots that can clean a given field. For example, consider the field map shown in Figure 1 with rows and columns numbered as shown and garbage locations marked with a 'G'. In this scheme, all robots will begin in location 1,1 and end in location 6, 7.

Figure 1 - A Field Map 



Figure 2 below shows two possible solutions, the second of which is preferable since it uses two robots rather than three.



Figure 2 - Two Possible Solutions

Your task is to create a program that will determine the minimum number of robots needed to pick up all the garbage from a field.

Input

An input file consists of one or more field maps followed by a line containing -1 -1 to signal the end of the input data. A field map consists of one or more lines, each containing one garbage location, followed by a line containing 0 0 to signal the end of the map. Each garbage location consists of two integers, the row and column, separated by a single space. The rows and columns are numbered as shown in Figure 1. The garbage locations will be given in row-major order. No single field map will have more than 24 rows and 24 columns. The sample input below shows an input file with two field maps. The first is the field map from Figure 1.

Output

The output will consist of a single line for each field map containing the minimum number of robots needed to clean the corresponding field.

Sample Input

1 2

1 4

2 4

2 6

4 4

4 7

6 6

0 0

1 1

2 2

4 4

0 0

-1 -1

Sample Output

2

1

#include <stdio.h>

struct node {
int r;
int c;
int f;
};

int main()
{
struct node path[600], temp;
int r, c, step, i, j, n, total;
n = 0;
while(scanf("%d%d" , &r, &c)) {
if(r == -1 && c == -1) {
break;
}
else if(r == 0 && c == 0) {
for(i = 0; i < n-1; i++) {
for(j = 0; j < n-i-1; j++) {
if(path[j].r > path[j+1].r ||
(path[j].r == path[j+1].r && path[j].c > path[j+1].c)) {
temp = path[j];
path[j] = path[j+1];
path[j+1] = temp;
}
}
}
step = 0;
total = 0;
while(total < n) {
i = 0;
while(i < n && path[i].f) {
i++;
}
temp = path[i];
path[i].f= 1;
total += 1;
step++;
for(i = i+1; i < n; i++) {
if(!path[i].f) {
if(temp.r == path[i].r) {
path[i].f = 1;
temp = path[i];
total += 1;
}
else if(temp.r < path[i].r) {
if(path[i].c >= temp.c) {
path[i].f = 1;
temp = path[i];
total += 1;
}
}
}
}
}
printf("%d\n", step);
n = 0;
} else {
path
.r = r;
path
.f = 0;
path[n++].c = c;
}
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ACM解题报告 贪心