登录
首页 » 算法 » 动态规划中的传送阵算法

动态规划中的传送阵算法

于 2022-06-11 发布 文件大小:809.48 kB
0 194
下载积分: 2 下载次数: 1

代码说明:

魔法世界的小明要乘传送阵到其目的地,传送阵有不同的规模大小,且只能由规模小的传送阵传送到规模大的传送阵。小明已经知道目的地的传送阵比他现在所在的传送阵规模大,且在这两个传送阵规模之间,有n-2个不同的传送阵。小明发挥起了聪明才智,将这些传送阵按规模大小标为1到n号,当然了1号就是起始地点,n号是目的地。 自然我们有,这n个标号的传送阵,号小的能去号大的,号大的不能去号小的。小明也测量了一些传送阵到另一些传送阵的时间,至于没有测量的时间的道路,小明不希望走(万一这条路传送阵失灵呢….)。 现在问题来了,小明最短需要多久才能到目的地呢?

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 信息安全
    使用软件和硬件防止未经授权的复制技术保护来实现。保护NSC是旨在用于并发症一个复杂的工具(理想 - 防止)的非法复制的软件,这是受保护的。该子系统实现机制 - 用于连接安全的一套软件工具由被保护的软件模块中实现的代码。实现的安全码是防止非法企图启动该程序,这是保护的软件模块。的子系统执行的安全功能的解决认识到被保护的合法性运行软件的问题。用于战斗的尝试子系统计数器中和防御机制以消除保护NSC及(或)其抹黑的系统。环境块设置特性得到识别特征的计算环境。环境特征块比较设置的合法性的事实来看受保护的程序。块反馈起着响应系统,以保护受保护未经授权的程序。在这个实验室工作方案的开发来实现的方法位操作使用XOR运算符与密码保护。
    2022-01-28 06:39:33下载
    积分:1
  • 操作系统中的作业,CPU进程调度。PCB 控制块
    操作系统中的作业,CPU进程调度。PCB 控制块-operations of the operating system, CPU scheduling process. PCB control block
    2023-05-07 20:50:03下载
    积分:1
  • 支持向量机 用于训练车辆检测
    选取200正样本车辆  200负样本 通过提出样本的hog特征,并进行训练。实验结果能很好的对监控视频中的车辆进行识别跟踪,且效果良好。
    2023-02-08 23:55:11下载
    积分:1
  • SIMPLE algrithm in Computational fluid mechanics
    应用背景This application is to focus on the numerical methods in Computational Fluid Mechanics, dealing with aeronautics, hydraulics, heat and mass transfer etc. We konw fluids have the ability to transport matter and its propertities as well as transmit force, therefore fluid mechanics is a subject that is particularly open to cross fertilization with other sciences and disciplines of engineering. The subject of fluid mechanics will be highly relevant in domains such as chemical,metallurgical, biological and ecological engineering.关键技术 SIMPLE (Semi-Implicit Method for Pressure Linked Equations) algrithm is the principal numerical method to numerical simulate incompressible fluid flow, it can remove the difficults of fake pressure disturbance and neglecting specific pressure equation for incompressible fluid flow successful. The main thoughts and steps of SIMPLE algorithm are given in this application. The single-phase loc
    2023-03-06 10:05:03下载
    积分:1
  • 刚才弄错了,这才是第二个源码,可以实现输入一二叉树的前序与中序,输出其后序...
    刚才弄错了,这才是第二个源码,可以实现输入一二叉树的前序与中序,输出其后序-have just made a mistake, this is the second source, can achieve an input sequence of binary tree with the sequence, then the output sequence
    2022-03-04 21:26:50下载
    积分:1
  • Using Gauss integral formula for numerical integration, will be subdivided into...
    利用Gauss积分公式进行数值积分,将区间 细分成n个相等的子区间,然后在每个上使用经过修改适用于不同子区间的三点Gauss公式计算积分的值,然后求和。-Using Gauss integral formula for numerical integration, will be subdivided into n-equal interval sub-intervals, and then apply to each use of a modified three-point range in different sub-Gauss formula to calculate the value of points, and then summed.
    2022-03-19 15:01:13下载
    积分:1
  • 《matlab6.5辅助小波分析与应用例程》书籍源代码
    《matlab6.5辅助小波分析与应用例程》书籍-源代码。书籍内容:第一章 小波分析基础理论第二章 MATLAB 6.5小波分析示例第三章 MATLAB6.5小波包分析示例第四章 面向对象的设计及应用第五章 小波函数的添加第六章 小波分析用于信号处理 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-02-04 14:09:28下载
    积分:1
  • 用链表计任意大小数的阶乘
    用链表计算任意大小数的阶乘-calculated using the number of arbitrary size factorial
    2022-04-08 19:11:01下载
    积分:1
  • This is the application of genetic algorithms using the MATLAB language, I think...
    这是遗传算法的应用,用的是MATLAB语言编写的,我觉的会对大家有用。-This is the application of genetic algorithms using the MATLAB language, I think the people will useful.
    2022-02-14 23:11:24下载
    积分:1
  • 快速排序qsort
    快速排序qsort 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-05-06 06:19:21下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载