十五月明


私信TA

用户名:dotcpp0605328

访问量:5470

签 名:

等  级
排  名 316
经  验 5492
参赛次数 0
文章发表 88
年  龄 18
在职情况 学生
学  校 曲阜师范大学
专  业 人工智能

  自我简介:

Easy

解题思路:

注意事项:

参考代码:

#include<iostream>

#include<algorithm>

using namespace std;


struct Node

{

    int start,end;

}p[1005];


bool cmp(Node a,Node b){return a.end < b.end;}//升序

int main()

{

    int n;  cin >> n;

    int count = 1;

    for(int i = 0; i < n; i++)

    {

        cin >> p[i].start >> p[i].end;

    }

    sort(p, p + n, cmp);

    int temp = p[0].end;

    for(int j = 1; j < n; j++)

    {

        if(p[j].start >= temp)

        {

            temp = p[j].end;

            count++;

        }

    }

    cout << count;

    return 0;

}        


 

0.0分

1 人评分

  评论区

  • «
  • »