风也很温柔


私信TA

用户名:2010101018

访问量:641

签 名:

要么行动,要么闭嘴。

等  级
排  名 3223
经  验 1993
参赛次数 0
文章发表 3
年  龄 66
在职情况 学生
学  校 大学
专  业 程序员

  自我简介:

究竟是怎样的人生经历才配得上现在的岁月静好。

TA的其他文章

好理解的代码
浏览:52

解题思路:

注意事项:

参考代码:

#include<bits/stdc++.h>
using namespace std;
struct pp{
    int m;
    int n;
}P[1009];
bool cmp(pp &a,pp& b){
    if(a.n <=b.n ) return true;
    else return false;
}
int main()
{
    int t;
    cin>>t;
    for(int i=1;i<=t;i++) cin>>P[i].m >>P[i].n ;
    sort(P,P+t,cmp);
    int count=1;
    int h=1;
    for(int i=2;i<=t;i++)
    {
        if(P[i].m >=P[h].n )
        {
            h=i;
            count++;
        }
    }
    cout<<count<<endl;
    return 0;
}


 

0.0分

6 人评分

  评论区

2024-04-10 18:07:58
  • «
  • 1
  • »