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

活动安排

时间:2020-01-13 16:39:47      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:ref   开始时间   iostream   space   持续时间   bool   its   bit   algorithm   

贪心

loj链接

思路就是按照结束时间从小到大排序,最后找到可以安排的活动

原因:按开始时间排序,可能导致持续时间很长的项目被选中

按持续时间排序,可能导致时间很短的正好跨过两个活动的开头和结尾

代码

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<bits/stdc++.h>
using namespace std;
int n,ans,tmp;
struct EVE{
    int s,f;
}e[2000]; 
bool cmp(EVE a,EVE b){
    return a.f < b.f;
}
int main(){
    cin >> n;
    for(int i = 1;i <= n; i++)
        cin >> e[i].s >> e[i].f;
    sort(e+1,e+1+n,cmp);
    for(int i = 1;i <= n; i++){
        tmp = e[i].f;
        ans++;
        while(e[i].s < tmp) i++;
        i--;
    }
    cout << ans << endl;
    return 0;
}

活动安排

标签:ref   开始时间   iostream   space   持续时间   bool   its   bit   algorithm   

原文地址:https://www.cnblogs.com/Cao-Yucong/p/12187468.html

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