hdu1124(djstra+dfs)

本文详细介绍了使用迪杰斯特拉算法求解最短路径问题的方法,并通过代码实例展示了如何实现这一算法。同时,文章还讨论了在特定场景下,如何利用深搜来计算不同最短路径的数量。

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

A Walk Through the Forest

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 5135    Accepted Submission(s): 1872


Problem Description
Jimmy experiences a lot of stress at work these days, especially since his accident made working difficult. To relax after a hard day, he likes to walk home. To make things even nicer, his office is on one side of a forest, and his house is on the other. A nice walk through the forest, seeing the birds and chipmunks is quite enjoyable.
The forest is beautiful, and Jimmy wants to take a different route everyday. He also wants to get home before dark, so he always takes a path to make progress towards his house. He considers taking a path from A to B to be progress if there exists a route from B to his home that is shorter than any possible route from A. Calculate how many different routes through the forest Jimmy might take.
 

Input
Input contains several test cases followed by a line containing 0. Jimmy has numbered each intersection or joining of paths starting with 1. His office is numbered 1, and his house is numbered 2. The first line of each test case gives the number of intersections N, 1 < N ≤ 1000, and the number of paths M. The following M lines each contain a pair of intersections a b and an integer distance 1 ≤ d ≤ 1000000 indicating a path of length d between intersection a and a different intersection b. Jimmy may walk a path any direction he chooses. There is at most one path between any pair of intersections.
 

Output
For each test case, output a single integer indicating the number of different routes through the forest. You may assume that this number does not exceed 2147483647
 

Sample Input
5 6 1 3 2 1 4 2 3 4 3 1 5 12 4 2 34 5 2 24 7 8 1 3 1 1 4 1 3 7 1 7 4 1 7 5 1 6 7 1 5 2 1 6 2 1 0
 

Sample Output
2 4
 

用迪杰斯特拉算法求最短路,然后深搜得到其他的相同最短路径

代码如下:

#include<iostream>
#nclude<string.h>
#include<stdio.h>
using namespace std;
#define INF 1000000
int map[1005][1005],dis[1005],path[1005];
bool vis[1005];
int n;
void distra(int node)
{
	int i,j;
	memset(vis,0,sizeof(vis));
	for(i=0;i<=n;i++)
	{
		dis[i]=map[node][i];
	}
	vis[node]=1;
	dis[node]=0;
	for(i=1;i<=n;i++)
	{
		int min=INF,v=0;
		for(j=1;j<=n;j++)
		{
			if(!vis[j]&&dis[j]<min)
			{
				v=j;
				min=dis[j];
			}
		}
	
		vis[v]=1;
		for(j=1;j<=n;j++)
		{
			if(!vis[j]&&map[v][j]<INF&&dis[j]>dis[v]+map[v][j])
			{
				dis[j]=dis[v]+map[v][j];
			}
		}
	}
}//djistra算法模板,没必要解释
int dfs(int src)
{
	if(path[src]!=-1)
		return path[src];
	if(src==2)
		return 1;
	path[src]=0;//将深搜的点初始为0;
	for(int i=1;i<=n;i++)
	{
		if(dis[src]>dis[i]&&map[i][src]!=INF)
			path[src]+=dfs(i);//找到一条路径就加到原来的路径上
	}
return path[src];//注意返回值
}
int main()
{
	int m,i,j,a,b,di;
	while(cin>>n,n)
	{
		for(i=0;i<=n;i++)
		{
			for(j=0;j<=n;j++)
				map[i][j]=INF;
			map[i][i]=0;
		}//邻接矩阵初始无穷大
		cin>>m;
		while(m--)
		{
			cin>>a>>b>>di;
			map[b][a]=map[a][b]=di;
		}
		memset(dis,0,sizeof(dis));
		distra(2);
		memset(path,-1,sizeof(path));
		cout<<dfs(1)<<endl;
	}
	return 0;
}


内容概要:本文档是关于基于Tecnomatix的废旧智能手机拆解产线建模与虚拟调试的毕业设计任务书。研究内容主要包括:分析废旧智能手机拆解工艺流程;学习并使用Tecnomatix软件搭建拆解产线的三维模型,包括设备、输送装置等;进行虚拟调试以模拟各种故障情况,并对结果进行分析提出优化建议。研究周期为16周,涵盖了文献调研、拆解实验、软件学习、建模、调试和论文撰写等阶段。文中还提供了Python代码来模拟部分关键流程,如拆解顺序分析、产线布局设计、虚拟调试过程、故障模拟与分析等,并实现了结果的可视化展示。 适合人群:本任务书适用于机械工程、工业自动化及相关专业的本科毕业生,尤其是那些对智能制造、生产线优化及虚拟调试感兴趣的学生。 使用场景及目标:①帮助学生掌握Tecnomatix软件的应用技能;②通过实际项目锻炼学生的系统建模和虚拟调试能力;③培养学生解决复杂工程问题的能力,提高其对废旧电子产品回收再利用的认识和技术水平;④为后续的研究或工作打下坚实的基础,比如从事智能工厂规划、生产线设计与优化等工作。 其他说明:虽然文中提供了部分Python代码用于模拟关键流程,但完整的产线建模仍需借助Tecnomatix商业软件完成。此外,为了更好地理解和应用这些内容,建议学生具备一定的编程基础(如Python),并熟悉相关领域的基础知识。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值