码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 3069 Saruman's Army (贪心)

时间:2017-11-30 23:26:14      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:ima   ros   bre   bsp   es2017   close   man   col   log   

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

 

分析 :

 技术分享图片

 

技术分享图片
#include<bits/stdc++.h>
using namespace std;
const int maxn = 1e3 + 10;
int arr[maxn];
int main(void)
{
    int n, radius;
    while(~scanf("%d %d", &radius, &n) && !(radius==-1 && n==-1)){
        for(int i=1; i<=n; i++)
            scanf("%d", &arr[i]);

        sort(arr+1, arr+1+n);

        int ans = 0;
        int L = 1;
        for(int i=1; i<=n; i++){
            if(i == n) { ans++; break; }
            if(arr[i+1] - arr[L] > radius){
                ans++;
                for(int j=i; j<=n; j++){
                    if(arr[j+1] - arr[i] > radius){
                        L = j+1;
                        i = j;
                        break;
                    }
                    if(j == n){
                        i = n;
                        break;
                    }
                }
            }
        }
        printf("%d\n", ans);
    }
    return 0;
}
View Code

 

POJ 3069 Saruman's Army (贪心)

标签:ima   ros   bre   bsp   es2017   close   man   col   log   

原文地址:http://www.cnblogs.com/Rubbishes/p/7931941.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!