其他分享
首页 > 其他分享> > Saruman's Army

Saruman's Army

作者:互联网

 

#include<cstdio>
#include<iostream>
#include<set>
#include<algorithm>
using namespace std;
set<int> s;
int main(void)
{
    int R, n;
    while (cin >> R >> n && R != -1 && n != -1)
    {
        s.clear();
        for (int i = 0; i < n; i++) { int t; cin >> t; s.insert(t); }
        int ans = 0;
        set<int>::iterator it = s.begin();
        while (it != s.end())
        {
            //要想使用的标志最少,从左边的点开始考虑
            int x = *it; it++;
            //距其R的距离以内必须带有标志,所以距离最左边R的距离最靠边缘的点为标志点
            while (it != s.end() && *it <= x + R)it++;
            ans++;
            //以标志点为中心
            int y = *(--it); it++;
            //寻找中心点右边的边缘外的第一个点,找到后开始依次循环
            while (it != s.end() && *it <= y + R)it++;
        }
        printf("%d\n", ans);
    }
    return 0;

}

 

标签:set,end,Saruman,Army,int,while,&&,include
来源: https://www.cnblogs.com/loliconsk/p/14386643.html