码迷,mamicode.com
首页 >  
搜索关键字:distance    ( 1354个结果
两点之间的距离
import javax.swing.JOptionPane;public class Distance { public static void main(String[] args){ String input = JOptionPane.showInputDialog(nu...
分类:其他好文   时间:2014-08-06 21:42:42    阅读次数:267
poj 2689 Prime Distance 【数论】【筛法求素数】
筛法求素数扩展 经典题目...
分类:其他好文   时间:2014-08-06 19:17:02    阅读次数:275
Prime Distance(二次筛素数)
Description The branch of mathematics called number theory is about properties of numbers. One of the areas that has captured the interest of number theoreticians for thousands of years is the qu...
分类:其他好文   时间:2014-08-06 19:06:42    阅读次数:319
dfs 与 dijkstra 总结
Dijkstra://寻求加权图起始点到各个节点的最短路径for i distance[presentNode] + length(i, presentNode) //更新节点距离 distance[i] = distance[presentNode] + length(i, presentNod....
分类:其他好文   时间:2014-08-05 22:20:20    阅读次数:234
Metric Space
Metric spaces is a large class of spaces on which the closeness of two points is depicted by a distance function, or called a metric. Metric spaces ar...
分类:其他好文   时间:2014-08-05 03:04:28    阅读次数:220
数据结构:点对之间最短距离--Floyd算法
Floyd算法 Dijkstra算法是用于解决单源最短路径问题的,Floyd算法则是解决点对之间最短路径问题的。Floyd算法的设计策略是动态规划,而Dijkstra采取的是贪心策略。当然,贪心算法就是动态规划的特例。 算法思想 点对之间的最短路径只会有两种情况: 两点之间有边相连,weight(Vi,Vj)即是最小的。 通过另一点:中介点,两点相连,使weight(Vi,Vk)+weight(Vk,Vj)最小。 Min_Distance(Vi,Vj)=min{weight(Vi,Vj)...
分类:其他好文   时间:2014-08-04 14:25:07    阅读次数:275
codeforces161D - Distance in Tree 树形dp
题意:给你一棵树,问你树中距离为k的有多少种情况。解题思路:树形dp 维护每个节点(1-K)深度的情况,解题代码: 1 // File Name: 161d.cpp 2 // Author: darkdream 3 // Created Time: 2014年08月03日 星期日 19时20分10秒...
分类:其他好文   时间:2014-08-03 20:36:35    阅读次数:201
POJ1986 Distance Queries (LCA)
传送门:http://poj.org/problem?id=1986Distance QueriesTime Limit: 2000MSMemory Limit: 30000KCase Time Limit: 1000MSDescriptionFarmer John's cows refused t...
分类:其他好文   时间:2014-08-03 15:12:05    阅读次数:290
Min Edit Distance
Min Edit Distance ————两字符串之间的最小距离 PPT原稿参见Stanford;http://www.stanford.edu/class/cs124/lec/med.pdf Tips:由于本人水平有限,对MED的个人理解可能有纰漏之处,请勿尽信。 Edit:个人理解指编辑之意,...
分类:其他好文   时间:2014-08-02 17:48:33    阅读次数:338
poj 2689 Prime Distance(大区间筛素数)
http://poj.org/problem?id=2689 题意:给出一个大区间[L,U],分别求出该区间内连续的相差最小和相差最大的素数对。 因为L2147483647,直接筛素数是不行的,数组就开不了。但是可以根据素数筛的原理。我们先筛出sqrt(2147483647)以内的素数,然后拿这些素数去筛[L,U]之间的素数,即两次素数筛。但是L,U还是很大,但U-L #includ...
分类:其他好文   时间:2014-07-24 10:28:16    阅读次数:210
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!