最短路算法
chao887062
面对那么多别人看来是"水题"的题,我只能无奈的一次次WA,顽强的WA着....
展开
-
HDOJ--最短路---Dijkstra模版
最短路 Dijkstra算法----模版: hdoj:http://acm.hdu.edu.cn/showproblem.php?pid=2544 #include"stdio.h" #include"string.h" #define max 99999 int road[110原创 2012-07-23 21:56:47 · 509 阅读 · 0 评论 -
NYOJ---赚钱啦---Bellman--ford算法模版
赚钱啦 实战连接:http://acm.nyist.net/JudgeOnline/problem.php?pid=183 #include"stdio.h" #define max 1000000 int dist[1010]; struct edge { int a,b,earn; }city[2010]; void init(int n) { int i;原创 2012-07-23 22:06:32 · 468 阅读 · 0 评论