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

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

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

  • 1:[POJ2069]Super Star(模拟退火

    模拟<em>退火</em>,圆心每次都去找最远那个点,这样两点之间的距离就是

    https://www.u72.net/daima/0mak.html - 2024-08-29 20:42:00 - 代码库
  • 2:POJ 1379 Run Away 模拟退火

    后来重写了一发迭代5遍的,基本上把把AC了= =模拟<em>退火</em>果然是一种不是很靠谱的算法

    https://www.u72.net/daima/4877.html - 2024-07-22 17:45:49 - 代码库
  • 3:Ural 1520 Empire Strikes Back(模拟退火)

    最近研究了下模拟<em>退火</em>,首先戳这里&gt;_&lt;顾研08年集训队论文,讲的非常详细首先随机20个点作为候选解,以此扩展来确定距离工厂最近的点的最远的距离是多少。

    https://www.u72.net/daima/v7e4.html - 2024-07-15 13:51:28 - 代码库
  • 4:(模拟退火

    做法:模拟<em>退火</em> 1 #include &lt;iostream&gt; 2 #include&lt;cstdio&gt; 3 #include&lt;cstring&gt; 4 #include&lt;

    https://www.u72.net/daima/vmwa.html - 2024-07-15 16:54:09 - 代码库
  • 5:bzoj2428 [ HAOI2006 ] -- 模拟退火

    思路:考虑模拟<em>退火</em>。每次先对每个数

    https://www.u72.net/daima/79vv.html - 2024-09-10 21:31:40 - 代码库
  • 6:POJ2069 最小球体覆盖, 模拟退火

    只是套了个模板,模拟<em>退火</em>具体的过程真心不懂阿 1 //#pragma comment(linker, &quot;/STACK:16777216&quot;) /

    https://www.u72.net/daima/2n1v.html - 2024-07-19 19:20:22 - 代码库
  • 7:模拟退火

                        爬山算法爬山算法是一种局部择优的方法,采用启发式方法,是对深度优先搜索的一种改进,它利用反馈信息帮助生成解的决策。爬山算法一般存在以下问题:局部最大

    https://www.u72.net/daima/xn1x.html - 2024-07-16 18:30:26 - 代码库
  • 8:HDU 3644 模拟退火

                        题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3644题意:给定n个点的一个多边形,一个圆的半径,判断圆是否可以放在多边形里,由于圆形坐标没确定,所以

    https://www.u72.net/daima/cc3n.html - 2024-07-10 22:39:46 - 代码库
  • 9:Run Away 模拟退火

                        Run AwayTime Limit:5000MS     Memory Limit:32768KB     64bit IO Format:%I64d &amp; %I64uSubmit StatusDescriptionOne of the traps we will encount

    https://www.u72.net/daima/ve6u.html - 2024-07-15 16:17:14 - 代码库
  • 10:爬山算法和退火算法

                        爬山算法爬山算法是一种简单的贪心搜索算法,该算法每次从当前解的临近解空间中选择一个最优解作为当前解,直到达到一个局部最优解。爬山算法实现很简单

    https://www.u72.net/daima/06cm.html - 2024-07-18 11:28:52 - 代码库
  • 11:【Foreign】咏叹 [模拟退火]

                        咏叹Time Limit: 100 Sec  Memory Limit: 256 MBDescription  有n根木棍,第i根长度为ai。你要贴着墙围出一个矩形区域,木棍围成的矩形边缘必须平行或垂

    https://www.u72.net/daima/9u5v.html - 2024-09-13 12:23:34 - 代码库
  • 12:POJ 2420 模拟退火

                        A Star not a Tree?Time Limit: 1000MS Memory Limit: 65536KTotal Submissions: 3272 Accepted: 1664DescriptionLuke wants to upgrade his home com

    https://www.u72.net/daima/w8r.html - 2024-07-02 17:43:12 - 代码库
  • 13:POJ 1379 模拟退火

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

    https://www.u72.net/daima/n46m.html - 2024-07-04 03:54:19 - 代码库
  • 14:poj1379 模拟退火

                         1 //Accepted    220 KB    829 ms 2 #include &lt;cstdio&gt; 3 #include &lt;cstring&gt; 4 #include &lt;cmath&gt; 5 #include &lt;ctime&gt; 6 #include &lt;cstdlib&gt; 7 #inc

    https://www.u72.net/daima/v733.html - 2024-07-15 13:39:11 - 代码库
  • 15:Hdu5017模拟退火

                        =。= 之前做过有关果蝇算法的东西,然后发现这俩个其实就是一个东西。。。当时都没想啊,其实想到都不一定能撸对。#include &lt;cstdio&gt;#include &lt;cstring&gt;#i

    https://www.u72.net/daima/49sc.html - 2024-07-22 18:18:59 - 代码库
  • 16:python nltk 模拟退火分词

                        #!/usr/bin/pythonimport nltkfrom random import randintdef segment(text, segs):    # 分词    words = []    last = 0    for i in ran

    https://www.u72.net/daima/6ner.html - 2024-09-07 18:22:15 - 代码库
  • 17:HDU 5017 Ellipsoid(模拟退火)

                        EllipsoidTime Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 1015    Accepted Submissio

    https://www.u72.net/daima/6zka.html - 2024-07-23 23:34:06 - 代码库
  • 18:poj1379模拟退火

                          题意: 求一个点到给出点最短距离最长的那个点。     看rp  迭代次数越多和 初始随机点越多 应该越准确(初始随机点坑了,多了也不一定准确)。#include &lt;

    https://www.u72.net/daima/5d5k.html - 2024-07-23 01:53:35 - 代码库
  • 19:hdu 5017 Ellipsoid(模拟退火

                        EllipsoidTime Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 1140    Accepted Submissio

    https://www.u72.net/daima/7r0x.html - 2024-07-25 07:23:08 - 代码库
  • 20:hdu 5017 Ellipsoid(模拟退火

                        EllipsoidTime Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 1140    Accepted Sub

    https://www.u72.net/daima/nfrw6.html - 2024-10-06 22:38:02 - 代码库