poj3636--Nested Dolls

Nested Dolls
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 7943 Accepted: 2158

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 h= 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 w1h1,w2h2, ... ,wmhm, where wi is the width and hi is the height of doll number i. 1 ≤ wihi ≤ 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

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

 

Source

 
//A doll with width  w 1 and height  h 1 will fit in another doll of width  w 2 and height  h= if and only if  w 1 <  w 2 and  h 1 <  h 2  有没有等号会影响bool  函数中的返回值 ;l相同的w要按照降序排列,l升序排列;
 
 1 #include <stdio.h> 
 2 #include <algorithm>
 3 using namespace std ;
 4 
 5 struct dool
 6 {
 7     int l;
 8     int w;
 9 } ;
10 dool num[20020] ;
11 
12 bool cmp(dool l, dool w)  //Dirworth定理:l按照升序排序;当l相等时,w也降序,排除了等号关系;
13 {
14     if(l.l == w.l)
15     return l.w > w.w ;
16     else
17     return l.l < w.l ;
18 }
19 
20 int main()
21 {
22     int m,n,i ;
23     scanf("%d",&m) ;
24     while(m--)
25     {
26         scanf("%d",&n) ;
27         for(i=0; i<n; i++)
28         scanf("%d %d",&num[i].l, &num[i].w) ;
29         sort(num, num+n, cmp) ;
30         
31         int temp, total=0, j ;
32         for(i=0; i<n; i++)
33         {
34             if(num[i].w != 0)
35             {
36                 temp=num[i].w ;
37                 total++ ;
38                 for(j=i+1; j<n; j++)
39                 {
40                     if(num[j].w > temp)
41                     {
42                         temp = num[j].w ;
43                         num[j].w = 0 ;
44                     }
45                 }
46             }
47         }
48         printf("%d\n",total) ;    
49     }
50     return 0;
51 }

 

转载于:https://www.cnblogs.com/soTired/p/4623470.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值