zoukankan      html  css  js  c++  java
  • 51nod 1133 不重叠的线段 (贪心,序列上的区间问题)

    题意:

    最多能选几条不重叠的线段

    思路:

    按R从小到大排序,维护一个最大的右端点

    右端点最小的那个线段是必选的,可以贪心地证明

    代码:

    #include<iostream>
    #include<cstdio>
    #include<algorithm>
    #include<cstring>
    #include<string>
    #include<stack>
    #include<queue>
    #include<deque>
    #include<set>
    #include<vector>
    #include<map>
    #include<functional>
        
    #define fst first
    #define sc second
    #define pb push_back
    #define mem(a,b) memset(a,b,sizeof(a))
    #define lson l,mid,root<<1
    #define rson mid+1,r,root<<1|1
    #define lc root<<1
    #define rc root<<1|1
    #define lowbit(x) ((x)&(-x)) 
    
    using namespace std;
    
    typedef double db;
    typedef long double ldb;
    typedef long long ll;
    typedef unsigned long long ull;
    typedef pair<int,int> PI;
    typedef pair<ll,ll> PLL;
    
    const db eps = 1e-6;
    const int mod = 1e9+7;
    const int maxn = 2e6+100;
    const int maxm = 2e6+100;
    const int inf = 0x3f3f3f3f;
    
    int n;
    struct node{
        int x, y;
    }a[maxn];
    bool cmp(node a, node b){
        //if(a.y==b.y)return a.x<b.x;
        return a.y<b.y;
    }
    int main() {
        scanf("%d", &n);
        for(int i = 1; i <= n; i++){
            scanf("%d%d", &a[i].x,&a[i].y);
        }
        sort(a+1,a+1+n,cmp);
        int ans = 1;
        int r = a[1].y;
        for(int i = 1; i <= n; i++){
            if(a[i].x>=r){
                ans++;
                r = a[i].y;
            }
        }
        printf("%d",ans);
        return 0;
    }
  • 相关阅读:
    cpu几种架构区别
    linux之cp/scp命令+scp命令详解
    解读Linux命令格式(转)
    IO虚拟化简单了解
    NoSQL-来自维基百科
    kvm命令参数记录
    kvm 简单了解
    host与guest间共享文件夹的三种方法(原创)
    新装linux系统最基本设置
    kernel编译速度提高
  • 原文地址:https://www.cnblogs.com/wrjlinkkkkkk/p/10441097.html
Copyright © 2011-2022 走看看