poj 3069 Saruman's Army

Description

Saruman the White must lead his army along a straight path from Isengard to Helm’s Deep. To keep track of his forces, Saruman distributes seeing stones, known as palantirs, among the troops. Each palantir has a maximum effective range of R units, and must be carried by some troop in the army (i.e., palantirs are not allowed to “free float” in mid-air). Help Saruman take control of Middle Earth by determining the minimum number of palantirs needed for Saruman to ensure that each of his minions is within R units of some palantir.

Input

The input test file will contain multiple cases. Each test case begins with a single line containing an integer R, the maximum effective range of all palantirs (where 0 ≤ R ≤ 1000), and an integer n, the number of troops in Saruman’s army (where 1 ≤ n ≤ 1000). The next line contains n integers, indicating the positions x1, …, xn of each troop (where 0 ≤ xi ≤ 1000). The end-of-file is marked by a test case with R = n = −1.

Output

For each test case, print a single integer indicating the minimum number of palantirs needed.

Sample Input

0 3
10 20 20
10 7
70 30 1 7 15 20 50
-1 -1

Sample Output

2
4

Hint

In the first test case, Saruman may place a palantir at positions 10 and 20. Here, note that a single palantir with range 0 can cover both of the troops at position 20.

In the second test case, Saruman can place palantirs at position 7 (covering troops at 1, 7, and 15), position 20 (covering positions 20 and 30), position 50, and position 70. Here, note that palantirs must be distributed among troops and are not allowed to “free float.” Thus, Saruman cannot place a palantir at position 60 to cover the troops at positions 50 and 70.

题目的大意

给你n个点,然后让你标记其中尽可能少的点,使得n个点都处于被标记点左右不超过R的区间内

即用一个最小的标记数目以达到覆盖整个结点的目的,求这个数目是多少?

利用贪心法求解

开始的代码不知道为什么一直错误,如下

 1 #include <cstdio>
 2 #include <cstdlib>
 3 #include <cstring>
 4 #include <iostream>
 5 #include <algorithm>
 6 using namespace std;
 7 int n ,r;
 8 int troop[1002];
 9 
10 int cmp(const void *a, const void *b) {
11     int at = *(int *)a;
12     int bt = *(int *)b;
13     return at - bt;
14 }
15 int main(int argc, char const *argv[])
16 {
17     //freopen("input.txt","r",stdin);
18     while(scanf("%d %d",&r,&n) != EOF && (r!=-1 && n != -1)) {
19         for(int i = 0; i < n; i++) {
20             scanf("%d",&troop[i]);
21         }
22         qsort(troop, n, sizeof(int), cmp);
23         int cnt = 0;
24         int halfCover = troop[0] + r;
25         int cover = 0;
26         int i = 1;
27         int j = 0;
28         while(cover < troop[n-1]) {
29             while(i < n && troop[i] <= halfCover ) {
30                 j = i;
31                 i++;
32             }
33             cover = troop[j] + r;
34             cnt++;
35             while(i < n && troop[i] <= cover) {
36                 i++;
37             }
38             if(i == n) {
39                 break;
40             }
41             halfCover = troop[i] + r;
42         }
43         printf("%d
",cnt);
44     }
45     return 0;
46 }

改成这样就正确了

 1 #include <cstdio>
 2 #include <cstdlib>
 3 #include <cstring>
 4 #include <iostream>
 5 #include <algorithm>
 6 using namespace std;
 7 int n ,r;
 8 int troop[1002];
 9 
10 int cmp(const void *a, const void *b) {
11     int at = *(int *)a;
12     int bt = *(int *)b;
13     return at - bt;
14 }
15 int main(int argc, char const *argv[])
16 {
17     //freopen("input.txt","r",stdin);
18     while(scanf("%d %d",&r,&n) != EOF && (r!=-1 && n != -1)) {
19         for(int i = 0; i < n; i++) {
20             scanf("%d",&troop[i]);
21         }
22         qsort(troop, n, sizeof(int), cmp);
23         int cnt = 0;
24         int i = 0;
25         while(i < n) {
26             int halfCover = troop[i] + r;
27             while(i < n && troop[i] <=  halfCover) {
28                 i++;
29             }
30             int cover = troop[i-1] + r;
31             cnt++;
32             while(i < n && troop[i] <= cover) {
33                 i++;
34             }
35         }
36         printf("%d
",cnt);
37     }
38     return 0;
39 }
原文地址:https://www.cnblogs.com/jasonJie/p/5788684.html