码迷,mamicode.com
首页 > 其他好文 > 详细

codevs 4888 零件分组

时间:2017-04-23 22:24:22      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:数据   block   can   put   add   正整数   str   active   http   

4888 零件分组

 

 时间限制: 1 s
 空间限制: 16000 KB
 题目等级 : 黄金 Gold
 
 
题目描述 Description

现有一些棍状零件,每个零件都有一定的长度(Li)和重量(Wi)。现在为了加工需要,要将他们分成若干组,使每一组中的零件都能排成一个长度和重量都不下降(若i<j,则Li<=Lj,Wi<=Wj,其中i,j为在同一组中的序号)的序列。请问至少要分成几组?

输入描述 Input Description

第1行为一个整数n,表示棍状零件的总个数。

接下来n行每行有两个正整数,分别为一个零件的长度(Li)和重量(Wi)。

输出描述 Output Description

输出一个正整数,表示最小分成的组数

样例输入 Sample Input

5

8 4

3 8

9 7

2 3

3 5

样例输出 Sample Output

2

 

解释:

第一组

(2,3) (3,5) (3,8)

第二组

(8,4)(9,7)

数据范围及提示 Data Size & Hint

n<=1000

Wi<=10000

Li<=10000

分类标签 Tags 

发现sort是万能的,,,,,,,,

 

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<algorithm>
 5 using namespace std;
 6 const int MAXN=10001;
 7 struct node
 8 {
 9     int x;
10     int y;
11 }map[MAXN];
12 int now=0;
13 int comp(const node & a,const node & b)
14 {
15     if(a.x>b.x&&a.y>b.y)
16     return 1;
17     else
18     return 0;
19 }
20 int main()
21 {
22     int n;
23     scanf("%d",&n);
24     for(int i=1;i<=n;i++)
25     {
26         scanf("%d%d",&map[i].x,&map[i].y);
27     }
28     sort(map+1,map+n+1,comp);
29     int tot=1;
30     for(int i=1;i<=n;i++)
31     {
32         if(map[i].x<=map[i+1].x)
33         tot++;
34     }
35     printf("%d",tot);
36     return 0;
37 }

 

codevs 4888 零件分组

标签:数据   block   can   put   add   正整数   str   active   http   

原文地址:http://www.cnblogs.com/zwfymqz/p/6754243.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!