HDU 2037

这是一道经典的贪心题,活动安排
#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;
const int maxn=105;


int n;
struct node
{
    int x;
    int y;
}p[maxn];


int cmp(node a,node b)
{
    return a.y>p[i].x>>p[i].y;
        }
        sort(p,p+n,cmp);
        int temp=0;
        int sum=1;
        for(int i=1; i=p[temp].y)
            {
                temp=i;
                sum++;
            }
        }
        printf("%d\n",sum);
    }
    return 0;
}


你可能感兴趣的:(ACM题心得及解题报告,贪心)