POJ 3069 Saruman & #39; s Army (simple and greedy)
Saruman's Army
| Time Limit:1000 MS |
|
Memory Limit:65536 K |
| Total Submissions:5343 |
|
Accepted:2733 |
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 palanidl has a maximum valid tive rangeRUnits, 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 isRUnits of some palantio.
Input
The input test file will contain multiple cases. Each test case begins with a single line containing an integerR, The maximum valid tive range of all palantirs (where 0 ≤R≤ 1000), and an integerN, The number of troops in Saruman's army (where 1 ≤N≤ 1000). The next line contains n integers, indicating the positionsX1 ,...,XnOf each troop (where 0 ≤Xi≤ 1000). The end-of-file is marked by a test caseR=N= −1.
Output
For each test case, print a single integer indicating the minimum number of palantirs needed.
Sample Input
0 310 20 2010 770 30 1 7 15 20 50-1 -1
Sample Output
24
Hint
In the first test case, Saruman may place a palantioat positions 10 and 20. Here, note that a single palantiowith 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 palantioat position 60 to cover the troops at positions 50 and 70.
Source
Stanford Local 2006
There are some points on the number axis. Each point can contain a ghost, which can cover the R range and ask how many things are needed at least.
Question Analysis: It seems to be challenging the question in the book. Scan left to right and find the center of the circle.
#include
#include
#include using namespace std;int x[1005];int main(){int r,n;while(scanf(%d %d, &r, &n) != EOF && (r != -1 && n != -1)){for(int i = 0; i < n; i++)scanf(%d, &x[i]);sort(x, x + n);int ans = 0, i = 0;while(i < n){int a1 = x[i++];while(i < n && x[i] <= a1 + r)i ++;int a2 = x[i - 1];while(i < n && x[i] <= a2 + r)i++;ans++;}printf(%d, ans);}}