HDU - 1677
Description Dilworth is the world’s most prominent collector of Russian nested dolls: he literally has thousands of them! You know, the wooden hollow dolls of different sizes of which the smallest doll is contained in the second smallest, and Input On the first line of input is a single positive integer 1 <= t <= 20 specifying the number of test cases to follow. Each test case begins with a positive integer 1 <= m <= 20000 on a line of itself telling the number of dolls in the Output For each test case there should be one line of output containing the minimum number of nested dolls possible. Sample Input 4 3 20 30 40 50 30 40 4 20 30 10 10 30 20 40 50 3 10 30 20 20 30 10 4 10 10 20 30 40 50 39 51 Sample Output 1 2 3 2 大概意思与最小拦截系统类似 第一种方法,自己写二分函数 /* Problem : 1677 ( Nested Dolls ) Judge Status : Accepted RunId : 14351565 Language : G++ Author : 24862486 */ #include <cstdio> #include <cstring> #include <vector> #include <queue> #include <algorithm> using namespace std; const int maxn = 20000 + 5; const int INF=0x3f3f3f3f; struct point { int h, w; point(int w ,int h) : w(w), h(h) {} point() {} } ps[maxn]; int dp[maxn], t, m; bool cmp(const point &a,const point &b) { if(a.w == b.w) return a.h < b.h; return a.w > b.w; } int solve() { memset(dp,0,sizeof(dp)); int top = 0, maxx = -1; dp[top] = -1; for(int i = 1; i <= m; i ++) { if(ps[i].h >= dp[top]) { dp[++ top] = ps[i].h;//其中dp[1]--dp[top]一定是不下降子序列,因为每一次的新系统的生成,表示大于他的值 } else { int l = 0,r = top;//(0,top] while(r - l > 1) { int mid = (l + r) >> 1; if(ps[i].h < dp[mid]) {//是不能够相等,相等则依旧取不到 r = mid; } else l = mid; } dp[r] = ps[i].h; } } return top; } int main() { //freopen("D://imput.txt", "r", stdin); scanf("%d", &t); while(t --) { scanf("%d", &m); for(int i = 1; i <= m; i ++) { scanf("%d%d", &ps[i].w, &ps[i].h); } sort(ps + 1,ps + m + 1,cmp); printf("%d\n",solve()); } return 0; } 第二种,运用upper_bound以及lower_bound函数 /* Problem : 1677 ( Nested Dolls ) Judge Status : Accepted RunId : 14351713 Language : G++ Author : 24862486 */ #include <cstdio> #include <cstring> #include <vector> #include <queue> #include <algorithm> using namespace std; const int maxn = 20000 + 5; const int INF=0x3f3f3f3f; struct point { int h, w; point(int w ,int h) : w(w), h(h) {} point() {} bool operator < (const point &object)const { return h < object.h; } } ps[maxn],dp[maxn]; bool cmp(const point &a,const point &b) { if(a.w == b.w) return a.h < b.h; return a.w > b.w; } int main() { //freopen("D://imput.txt", "r", stdin); int t, m; scanf("%d", &t); while(t --) { scanf("%d", &m); for(int i = 0; i < m; i ++) { scanf("%d%d", &ps[i].w, &ps[i].h); } sort(ps,ps + m,cmp); for(int i = 0; i < m ; i ++) { dp[i].h = INF; dp[i].w = INF; } for(int i = 0; i < m ; i ++) { *upper_bound(dp,dp + m, ps[i]) = ps[i];//不是lower_bound()原因是不能够相等 } printf("%d\n", lower_bound(dp, dp + m, point(INF,INF)) - dp); } return 0; } |
版权声明:本文为博主原创文章,未经博主允许不得转载。