记录编号 531852 评测结果 AAAAAAAAAA
题目名称 友好城市 最终得分 100
用户昵称 Gravatar增强型图元文件 是否通过 通过
代码语言 C++ 运行时间 0.152 s
提交时间 2019-05-21 19:47:03 内存使用 15.95 MiB
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
struct c{
	int nc;
	int sc;
};
int n;
int d[200002]={0};
c ct[200002]={0};
bool cmp(c a,c b){
	return a.nc<b.nc;
}
int main() {
	freopen("friendcity.in","r",stdin);
	freopen("friendcity.out","w",stdout); 
	cin>>n;
	for(int i=1;i<=n;i++){
		cin>>ct[i].sc>>ct[i].nc;
	}
	sort(ct+1,ct+1+n,cmp);
	d[1]=1;
	for(int i=2;i<=n;i++){
		int maxx=0;
		for(int j=1;j<i;j++){
			if(d[j]>maxx&&ct[j].sc<ct[i].sc){
				maxx=d[j];
			}
		}
		if(maxx==0){
			d[i]++;
		}else{
			d[i]=maxx+1;
		}
	}
	int maxn=0;
	for(int i=1;i<=n;i++){
		maxn=max(maxn,d[i]);
	}
	cout<<maxn;
	return 0;
}