HDU-1051 Wooden Sticks

本文探讨了如何通过排序和遍历策略来解决木棍加工的最小调整时间问题,旨在寻找最优的木棍加工顺序,以减少加工过程中的机器调整时间。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

                                                    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1051

                                                                               Wooden Sticks

Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u

Submit Status

Description

There is a pile of n wooden sticks. The length and weight of each stick are known in advance. The sticks are to be processed by a woodworking machine in one by one fashion. It needs some time, called setup time, for the machine to prepare processing a stick. The setup times are associated with cleaning operations and changing tools and shapes in the machine. The setup times of the woodworking machine are given as follows:

(a) The setup time for the first wooden stick is 1 minute.
(b) Right after processing a stick of length l and weight w , the machine will need no setup time for a stick of length l' and weight w' if l<=l' and w<=w'. Otherwise, it will need 1 minute for setup.

You are to find the minimum setup time to process a given pile of n wooden sticks. For example, if you have five sticks whose pairs of length and weight are (4,9), (5,2), (2,1), (3,5), and (1,4), then the minimum setup time should be 2 minutes since there is a sequence of pairs (1,4), (3,5), (4,9), (2,1), (5,2).

Input

The input consists of T test cases. The number of test cases (T) is given in the first line of the input file. Each test case consists of two lines: The first line has an integer n , 1<=n<=5000, that represents the number of wooden sticks in the test case, and the second line contains n 2 positive integers l1, w1, l2, w2, ..., ln, wn, each of magnitude at most 10000 , where li and wi are the length and weight of the i th wooden stick, respectively. The 2n integers are delimited by one or more spaces.

Output

The output should contain the minimum setup time in minutes, one per line.

Sample Input

3

5

4  9

5  2

2  1

3  5

1  4

3

2  2

1  1

2  2

3

1  3

2  2

3  1

Sample Output

2

1

3

题意:

给定n根木棍,以及每根木棍的长度l和重量w。现在要对它们进行加工,机器调整时间为1分钟,如果加工完一根长l重w的木棍后,下一根长l′重w'′​​的木棍满足l≤l'l≤l​′​​且w≤w',那么机器就可以继续加工而不需要进入调整时间。否则的话,又需要1分钟的调整时间才能继续加工。求总共最小需要的调整时间。

解题思路:

先进行排序,若长度不等,则将长度按从小到大的顺序排,若长度相等,则按重量从小到大的顺序排序,之后从第一根木棍开始,一次找符合条件的,找到之后以此重量接着找符合条件的,以此类推,注意最后一组有没有计算进去。

代码:

#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;
struct wooden
{
	int l;
	int w;
}q[10010];

bool cmp(wooden a,wooden b)
{
	if(a.l==b.l)
		return a.w<b.w;
	return a.l<b.l;
}

int main()
{
	int t,n,i,j,count,w0;
	int vis[10010];
	scanf("%d",&t);
	while(t--)
	{
		count=0;
		scanf("%d",&n);
		for(i=0;i<n;i++)
			scanf("%d%d",&q[i].l,&q[i].w);
		sort(q,q+n,cmp);
		/*for(i=0;i<n;i++)
			printf("%d %d\n",q[i].l,q[i].w);*/
		memset(vis,0,sizeof(vis));
		for(i=0;i<n-1;i++)
		{
			if(vis[i]==1)
				continue;
			count++; 
			vis[i]=1;
			w0=q[i].w;
			for(j=i+1;j<n;j++)
			{
				if(vis[j]==0&&q[j].w>=w0)
				{
					vis[j]=1;
					w0=q[j].w;
				}
			}
		}
		if(vis[n-1]==0)
			count++;
		printf("%d\n",count);
	}
	return 0;
}  

 

资源下载链接为: https://pan.quark.cn/s/1bfadf00ae14 华为移动服务(Huawei Mobile Services,简称 HMS)是一个全面开放的移动服务生态系统,为企业和开发者提供了丰富的工具和 API,助力他们构建、运营和推广应用。其中,HMS Scankit 是华为推出的一款扫描服务 SDK,支持快速集成到安卓应用中,能够提供高效且稳定的二维码和条形码扫描功能,适用于商品扫码、支付验证、信息获取等多种场景。 集成 HMS Scankit SDK 主要包括以下步骤:首先,在项目的 build.gradle 文件中添加 HMS Core 库和 Scankit 依赖;其次,在 AndroidManifest.xml 文件中添加相机访问和互联网访问权限;然后,在应用程序的 onCreate 方法中调用 HmsClient 进行初始化;接着,可以选择自定义扫描界面或使用 Scankit 提供的默认扫描界面;最后,实现 ScanCallback 接口以处理扫描成功和失败的回调。 HMS Scankit 内部集成了开源的 Zxing(Zebra Crossing)库,这是一个功能强大的条码和二维码处理库,提供了解码、生成、解析等多种功能,既可以单独使用,也可以与其他扫描框架结合使用。在 HMS Scankit 中,Zxing 经过优化,以更好地适应华为设备,从而提升扫描性能。 通常,ScanKitDemoGuide 包含了集成 HMS Scankit 的示例代码,涵盖扫描界面的布局、扫描操作的启动和停止以及扫描结果的处理等内容。开发者可以参考这些代码,快速掌握在自己的应用中实现扫码功能的方法。例如,启动扫描的方法如下: 处理扫描结果的回调如下: HMS Scankit 支持所有安卓手机,但在华为设备上能够提供最佳性能和体验,因为它针对华为硬件进行了
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值