HDU 1677 Nested Dolls(排序+二分)
发布日期:2021-11-06 16:56:42 浏览次数:5 分类:技术文章

本文共 2182 字,大约阅读时间需要 7 分钟。

Nested Dolls

Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2464    Accepted Submission(s): 702
Problem 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 this doll is in turn contained in the next one and so forth. One day he wonders if there is another way of nesting them so he will end up with fewer nested dolls? After all, that would make his collection even more magnificent! He unpacks each nested doll and measures the width and height of each contained doll. A doll with width w1 and height h1 will fit in another doll of width w2 and height h2 if and only if w1 < w2 and h1 < h2. Can you help him calculate the smallest number of nested dolls possible to assemble from his massive list of measurements?
 
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 test case. Next follow 2m positive integers w1, h1,w2, h2, . . . ,wm, hm, where wi is the width and hi is the height of doll number i. 1 <= wi, hi <= 10000 for all i.
 
Output
For each test case there should be one line of output containing the minimum number of nested dolls possible.
 
Sample Input
4320 30 40 50 30 40420 30 10 10 30 20 40 50310 30 20 20 30 10410 10 20 30 40 50 39 51
 
Sample Output
1232
AC代码:

#include 
#include
#include
using namespace std;#define maxn 20005//author:XXYYstruct node{ int w,h;}q[maxn];bool cmp(node a,node b){ if(a.w==b.w) return a.h
b.w;}int p[maxn];int main(){ int n,t,m,i,j,x,l,r,max,mid,f; scanf("%d",&t); while(t--){ scanf("%d",&m); for(i=0;i
=p[x]){ p[++x]=q[i].h; f=x; } else{ l=0; r=x-1; while(l<=r){ mid=(l+r)/2; if(q[i].h>=p[mid]) l=mid+1; else r=mid-1; } p[l]=q[i].h; f=l; } if(f>max) max=f; } printf("%d\n",max); } return 0;}

转载地址:https://blog.csdn.net/YJX_xx/article/details/37667021 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:HDU 1099 Lottery (数学问题模拟)
下一篇:HDU 1678 Shopaholic(排序)

发表评论

最新留言

路过按个爪印,很不错,赞一个!
[***.219.124.196]2024年03月22日 08时54分09秒