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

P2782 友好城市

时间:2019-07-24 13:26:34      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:upper   mat   turn   友好   return   can   ++   namespace   sha   

线性dp水题

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;

int n,ans=1;
int d[200005];
struct node{
	int z,y;
}a[200005];

bool cmp(node a,node b){
	return a.z<b.z;
}

int main(){
	scanf("%d",&n);
	for(int i=1;i<=n;i++){
		scanf("%d%d",&a[i].z,&a[i].y);
	}
	sort(a+1,a+1+n,cmp);
	d[1]=a[1].y;
    for (int i=2;i<=n;i++){
        if (a[i].y>=d[ans]){
			d[++ans]=a[i].y;
		}
        else{
            int j=upper_bound(d+1,d+ans+1,a[i].y)-d;//lower_bonud
            d[j]=a[i].y; 
        }
    }
    printf("%d\n",ans);
	return 0;
}

  

P2782 友好城市

标签:upper   mat   turn   友好   return   can   ++   namespace   sha   

原文地址:https://www.cnblogs.com/hahaha2124652975/p/11237248.html

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