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

找点(NYOJ891)

时间:2014-05-19 17:08:45      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   c   java   

bubuko.com,布布扣

bubuko.com,布布扣
//#define LOCAL
#include<cstdio>
#include<iostream>
#include<cmath>
#include<algorithm>
int const MAX_N=101;
typedef struct Point{
    int x,y;
    bool operator<(const Point &other) const
    {
        return x<other.x;
    };
};
Point Vec[MAX_N];
int N,R,x,y;
void solve()
{
    int coun=0,i;
    for(i=0;i<N;i++)
    {
        scanf("%d%d",&Vec[i].x,&Vec[i].y);
    }
    std::sort(Vec,Vec+N);
    int sum=Vec[0].y;
    coun=1;
    for(i=1;i<N;i++)
    {
        if(sum<Vec[i].x)
        {
                coun++;
                sum=Vec[i].y;
        }
        else
        {
            if(sum>Vec[i].y)
            {
                sum=Vec[i].y;
            }    
           }
    }
    printf("%d\n",coun);
}
int main()
{
#ifdef LOCAL
    freopen("891.in","r",stdin);
    freopen("891.out","w",stdout);
#endif
    while(~scanf("%d",&N))
    {
        solve();
    }
    return 0;
}
bubuko.com,布布扣

 

找点(NYOJ891),布布扣,bubuko.com

找点(NYOJ891)

标签:style   blog   class   code   c   java   

原文地址:http://www.cnblogs.com/jianfengyun/p/3734923.html

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