首页 > 代码库 > poj 1065
poj 1065
据说是贪心加dp,其实就是贪心
#include <iostream> #include <cstring> #include <cstdio> #include <algorithm> using namespace std; const int maxn=5000+10; typedef pair<int,int> pp; pp a[maxn]; int t,n; int use[maxn]; bool cmp1(pp x,pp y) { return (x.first<=y.first)||(x.first==y.first&&x.second<=y.second); } int main() { scanf("%d",&t); while(t--) { memset(use,0,sizeof(use)); scanf("%d",&n); for(int i=0; i<n; i++) scanf("%d%d",&a[i].first,&a[i].second); sort(a,a+n,cmp1); int ans=0; for(int i=0; i<n; i++) { int ff=a[i].second; if(!use[i])//一个新的上升子序列开始 { for(int j=i+1; j<n; j++) if(a[j].second>=ff&&!use[j]) { use[j]=1; ff=a[j].second;//更新最大值,也就是这个上升子序列的最后一个元素,不断更新 } ans++; } } printf("%d\n",ans); } return 0; }
poj 1065
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。