编程及软件开发解决方案库

2000万优秀解决方案库,覆盖所有编程及软件开发类,极速查询

今日已更新 484 篇代码解决方案

  • 1:UVA 6480 Zombie Invasion(模拟退火

                        A group of survivors has arrived by helicopter to an isolated island. The island is made up of a longnarrow strip of villages. The infected

    https://www.u72.net/daima/247s.html - 2024-07-20 12:04:18 - 代码库
  • 2:HDU - 5017 Ellipsoid(模拟退火法)

                        Problem DescriptionGiven a 3-dimension ellipsoid(椭球面)your task is to find the minimal distance between the original point (0,0,0) and p

    https://www.u72.net/daima/71s4.html - 2024-07-25 13:52:16 - 代码库
  • 3:UVA 6662 The Last Ant(模拟退火

                        A straight tunnel without branches is crowded with busy ants coming and going. Some ants walk leftto right and others right to left. All an

    https://www.u72.net/daima/60uv.html - 2024-07-24 11:42:43 - 代码库
  • 4:(模拟退火

                        题目链接:http://poj.org/problem?id=2420求费马点,即到所有其他点总和距离最小的点。一开始想枚举一个坐标,另一个坐标二分的,但是check的时候还是O(n)

    https://www.u72.net/daima/0995.html - 2024-08-29 19:07:00 - 代码库
  • 5:HDU 5017 Ellipsoid (计算几何,模拟退火

                        EllipsoidProblem DescriptionGiven a 3-dimension ellipsoid(椭球面)your task is to find the minimal distance between the original point (0,0

    https://www.u72.net/daima/77zs.html - 2024-07-25 19:06:54 - 代码库
  • 6:【BZOJ3680】吊打xxx [模拟退火]

                        吊打XXXTime Limit: 10 Sec  Memory Limit: 128 MB[Submit][Status][Discuss]Description  gty又虐了一场比赛,被虐的蒟蒻们决定吊打gty。  gty见

    https://www.u72.net/daima/6cbd.html - 2024-09-08 04:03:51 - 代码库
  • 7:PKU 1379 Run Away(模拟退火算法)

                        题目大意:原题链接  给出指定的区域,以及平面内的点集,求出一个该区域内一个点的坐标到点集中所有点的最小距离最大.解题思路:一开始想到用随机化算法

    https://www.u72.net/daima/5sah.html - 2024-09-06 13:44:22 - 代码库
  • 8:poj 2420,模拟退火算法,费马点

                        题目链接:http://poj.org/problem?id=2420题意:给n个点,找出一个点,使这个点到其他所有点的距离之和最小,也就是求费马点。 参考链接:http://www.cnblogs.com

    https://www.u72.net/daima/d90d.html - 2024-08-15 13:49:56 - 代码库
  • 9:poj 1379 Run Away 模拟退火 难度:1

                        Run AwayTime Limit: 3000MS Memory Limit: 65536KTotal Submissions: 6482 Accepted: 1993DescriptionOne of the traps we will encounter in the Py

    https://www.u72.net/daima/nhezr.html - 2024-08-03 11:49:50 - 代码库
  • 10:POJ 3087 Shuffle'm Up(模拟退火

                        DescriptionA common pastime for poker players at a poker table is to shuffle stacks of chips. Shuffling chips is performed by starting with

    https://www.u72.net/daima/0f42.html - 2024-07-17 23:36:11 - 代码库
  • 11:POJ2069 最小球覆盖 几何法和退火

                        对这种问题不熟悉的读者 可以先去看一看最小圆覆盖的问题 ZOJ1450现在我们来看最小球覆盖问题POJ2069 题目很裸,给30个点 求能覆盖所有点的最小球的半

    https://www.u72.net/daima/nnwdf.html - 2024-09-20 13:04:49 - 代码库
  • 12:BZOJ 1038 ZJOI2008 瞭望塔 模拟退火+二分答案

                        题目大意:给定一条折线,要求选择一个点建立高度为h的瞭望塔,要求瞭望塔塔顶可以看到折线上的每一个点,求h的最小值正解:半平面交不会!于是我们选择模拟

    https://www.u72.net/daima/5h0z.html - 2024-07-22 23:47:08 - 代码库
  • 13:BZOJ 3680: 吊打XXX【模拟退火算法裸题学习,爬山算法学习】

                        3680: 吊打XXXTime Limit: 10 Sec  Memory Limit: 128 MBSec  Special JudgeSubmit: 3192  Solved: 1198[Submit][Status][Discuss]Descriptiongty又

    https://www.u72.net/daima/ns9cn.html - 2024-10-20 00:19:02 - 代码库
  • 14:郑捷《机器学习算法原理与编程实践》学习笔记(第六章 神经网络初步)6.5 Boltzmann机算法

    6.5 Boltzmann机算法6.5.1 问题的提出6.5.2 模拟退化原理6.5.3 Boltzmann分布与<em>退火</em>过程6.5.4Boltzmann机类与<em>退火</em>过程

    https://www.u72.net/daima/4kx7.html - 2024-09-04 07:38:09 - 代码库
  • 15:ACM学习历程——HDU5017 Ellipsoid(模拟退火)(2014西安网赛K题)

                        ---恢复内容开始---DescriptionGiven a 3-dimension ellipsoid(椭球面) your task is to find the minimal distance between the original point (0

    https://www.u72.net/daima/nasv4.html - 2024-07-30 14:26:59 - 代码库
  • 16:POJ 2420

    模拟<em>退火</em>算法。昨天看了PPT,原来模拟<em>退火</em>算法涉及到马尔什么链,开始理解,它其实就是一个关于抽样的问题。随机抽样,选取足够多的样本,然后逐步逼近。而在平

    https://www.u72.net/daima/xsn5.html - 2024-07-17 02:18:48 - 代码库
  • 17:POJ 1379

    模拟<em>退火</em>算法。随机MAX个点,然后,<em>退火</em>移动,选取距离所有点中最短中最长者即可。理解和我上一篇一样。

    https://www.u72.net/daima/xs8z.html - 2024-07-17 02:58:48 - 代码库
  • 18:统计机器学习理论:随机熵、vc熵、退火VC熵、生长函数、VC维定义理解

                        一、定义:      有n个训练样本Zn={zi(xi,yi), i=1,2,...,n},定义N(Zn)为函数集中的函数能对样本分类的数目。       解释:xi 代表特征向量如d维特征向

    https://www.u72.net/daima/v0r9.html - 2024-08-24 02:05:53 - 代码库
  • 19:遗传算法优化策略

    一是引入模拟<em>退火</em>算法约束变异算子,即遗传模拟<em>退火</em>算法;二是实现在自适应遗传算法。

    https://www.u72.net/daima/nnu18.html - 2024-07-31 17:36:16 - 代码库
  • 20:HDOJ 5017 Ellipsoid

    第一次尝试模拟<em>退火</em>.....EllipsoidTime Limit: 2000/1000 MS (Java/Others)    Memory Limit:

    https://www.u72.net/daima/5xzv.html - 2024-07-23 09:35:26 - 代码库