hud 1025 Constructing Roads In JGShining's Kingdom

题目

http://acm.hdu.edu.cn/showproblem.php?pid=1025

分析

本题要求求出互不交叉的能够相容的最多的道路,想到这里觉得必须对所有的道路按照一定的规则进行排序(此处为经验,多练习即可)。在题目给出的n条道路有序之后,但询问与第j条道路相容的所以道路的时候,根据动态规划的最有子结构和重叠子问题性质,只用考虑前边j-1个与j的相容情况。
因此,为了求出与j的最大相容道路,只用再次遍历前j-1,找出最大的与j相容的道路个数即可。

复杂度分析

两重循环,时间复杂度为O(n*n),空间复杂度为O(n)

代码

#include <cstdio>
#include <vector>
#include <algorithm>
using namespace std;
typedef struct point1025{
	point1025(int a,int b){ x=a;y=b;v=1; }
	int x,y,v;
} Point1025;

bool sortcir(Point1025 X,Point1025 Y)
{
	if(X.x>Y.x||X.x==Y.x&&X.y>Y.y) return true;
	return false;
}

bool operator>(const Point1025 &X,const Point1025 &Y)
{
	return (X.x>Y.x && X.y>Y.y);
}

int main()
{
	freopen("in.txt","r",stdin);
	vector<Point1025> coll1025;
	int n1025,p1025,r1025;
	int k=0,max;
	while(scanf("%d",&n1025))
	{
		coll1025.clear();
		max=0;
		while(n1025--)
		{
			scanf("%d%d",&p1025,&r1025);
			coll1025.push_back(Point1025(p1025,r1025));
		}
		sort(coll1025.begin(),coll1025.end(),sortcir);
		for(int i=0;i<coll1025.size();++i)
		{
			for(int j=0;j<i;++j)
			{
				if(coll1025[j] > coll1025[i])
				{
					coll1025[i].v=(coll1025[i].v>coll1025[j].v+1)?coll1025[i].v:(coll1025[j].v+1);
				}
			}
			max=max>coll1025[i].v?max:coll1025[i].v;
		}
		printf("Case %d:\nMy king, at most %d road can be built.\n",++k,max);
	}
	return 0;
}


引用\[1\]:出现如下报错信息: \[ INFO\] \[1564730909.628248268\]: Constructing new MoveGroup connection for group 'arm_group' in namespace '' \[ INFO\] \[1564730910.984667942\]: MoveItSimpleControllerManager: Waiting for redwall_arm/follow_joint_trajectory to come up \[ERROR\] \[1564730915.984849668\]: MoveItSimpleControllerManager: Action client not connected: redwall_arm/follow_joint_trajectory \[ INFO\] \[1564730916.087709422\]: Returned 0 controllers in list \[ INFO\] \[1564730916.107154984\]: Trajectory execution is managing controllers 。 引用\[2\]:发现竟然没有找到follow_joint_trajectory消息,难道move_group没有发布吗?纠结了一天,终于找到原因了,之前虚拟机械臂有gazebo的ros_control插件自动帮我们获取了follow_joint_trajectory的动作action信息,现在到真实机器人了,需要我们自己写程序了。问题找到了,最重要的是要理解一点,move_group此时是follow_joint_trajectory的client端,动作消息是client端的move_group发布的,听起来有点绕,但是千万不要把报错信息的action client not connect搞混淆了,我们现在client是存在且被感知的(就是move_group),而之所以报错是因为我缺少了action server端,我们需要添加一个server订阅这个action。 引用\[3\]:Animation Blueprints Exposed types on SkeletalControlBase to allow creation of derived classes.Added support for creating sub-classes of FAnimNode_StateMachine outside Engine module.Allowed UAnimNotify_PlayMontageNotify to be inherited by other modules.Bug Fix:Fixed sub-classes of FAnimNode_SkeletalControlBase not having deprecated CacheBones called。 问题:constructing new movegroup connection for group 'manipulator' in namespace 回答: 根据提供的引用内容,报错信息中显示正在构建一个新的MoveGroup连接,连接的组是'manipulator',命名空间为空。\[1\]这个报错信息表明正在尝试建立一个名为'manipulator'的组的MoveGroup连接。然而,报错信息中还显示了一个错误,即Action client 'redwall_arm/follow_joint_trajectory'未连接。\[2\]这可能是因为缺少一个action server端,需要添加一个server来订阅这个action。根据提供的信息,还无法确定是否已经在命名空间中找到了'manipulator'组的相关信息。 #### 引用[.reference_title] - *1* *2* [通过ROS控制真实机械臂(5)---Moveit!真实机械臂(move_group和demo.launch修改)](https://blog.csdn.net/qq_34935373/article/details/95916111)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [Unreal Engine 4.20 Release Notes](https://blog.csdn.net/pizi0475/article/details/81636150)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值