poj 3069 贪心算法

题目链接:http://poj.org/problem?id=3069

一开始想了一种思路错了,最后发现就是从第一个点开始找到在范围内却又最远的点标记上,然后在从这个点找范围外最近的点,重复之前的操作就行了。

代码:

#include 
#include 
#include 
#include 
using namespace std;
#define M 1009
#define INF 0x3f3f3f3f
int mark[M];
int s[M];
int main()
{
    int n,m;
    while(scanf("%d %d",&n,&m)==2)
    {
        int a;
        memset(mark,0,sizeof(mark));
        if(n==-1 && m==-1) break;
        int max = -INF;
        for(int i = 0;i < m;i++)
        {
            scanf("%d",&s[i]);
        }
        int ans = 0;
        int i=0;
        sort(s,s+m);
        while(i


你可能感兴趣的:(poj 3069 贪心算法)