E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Jungle
Jungle
Roads
题意:给你一个点,然后给你这个点可达的点,注意这是双向图 #include<stdio.h> const int MAXN=30; const int INF=0x7fffffff; int map[MAXN][MAXN]; int n,ans; int pre[MAXN]; int dist[MAXN]; void Prim() { int
·
2015-11-13 15:05
OA
POJ--1251--
Jungle
Roads
JungleRoadsCrawlinginprocess...CrawlingfailedTimeLimit:1000MS MemoryLimit:10000KB 64bitIOFormat:%I64d&%I64uSubmitStatusPracticePOJ1251 DescriptionTheHeadElderofthetropicalislandofLagrishanhasa
Inite
·
2015-11-13 14:00
图论
你是否应该使用一个Javascript MVC框架?
本文摘自smashingmagazine的 Journey Through The JavaScript MVC
Jungle
部分内容,希望对大家有帮助,如果你觉得不过瘾,可以阅读原文。
·
2015-11-13 13:13
JavaScript
hdu 1301
Jungle
Roads
http://acm.hdu.edu.cn/showproblem.php?pid=1301 1 #include <cstdio> 2 #include <cstring> 3 #include <algorithm> 4 #define maxn 500 5 using namespace std; 6 const int i
·
2015-11-13 03:12
HDU
poj1251
Jungle
Roads 最小生成树kruskal算法实现
题目:岛上的居民要修最短的路来使得费用最少分析:实际上是求最小生成树,可以用prim算法和kruskal算法,基于刚学kruskal算法,以下是用kruskal算法做的。 kruskal算法的思想是:先把所有的边按照非降序排列,从而观察每条边是否能与以前的边组成环,能的话就不选,不能的话就选择,而判断是否组成环路的话可以通过使用并查集实现 并查集的思想是:{1,2,3},{4,5},{6,7,
·
2015-11-13 03:36
最小生成树
POJ 1251
Jungle
Roads
先将字母转换成数字,然后建图。建完图用堆优化的prim,写这道 题花了不少时间,居然写成了dij,搞混了。 /*Accepted 180K 0MS C++ 1594B 2012-07-27 15:57:47*/ #include<cstdio> #include<cstring> #include<cstdlib> #
·
2015-11-13 01:25
poj
hdu 1301
Jungle
Roads 简单的kruskal
Jungle
Roads Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768
·
2015-11-13 00:26
HDU
HDU 1301
Jungle
Roads
http://acm.hdu.edu.cn/showproblem.php?pid=1301 最简单的最小生成树 View Code #include <stdio.h> #include <stdlib.h> int p[30]; int cnt,n; typedef struct L { int a,b,d; }L; L r[1
·
2015-11-12 21:59
HDU
zoj 1406
Jungle
Roads
从A到F找到最短路即可,由于我不会用prim算法 只能用ku...算法,幸好这道题没有让输出路路径, 所以用ku...算法也行 我通常都是这样写的1.把边存起来2.快排3.并查集 呵呵,过了,还行吧,对了输入注意用scanf 中的%d前加一个空格 #include<stdio.h> #include<stdlib.h> #include<string.h&
·
2015-11-12 20:46
ZOJ
Hdu 1301
Jungle
Roads (最小生成树)
地址:http://acm.hdu.edu.cn/showproblem.php?pid=1301 很明显,这是一道“赤裸裸”的最小生成树的问题; 我这里采用了Kruskal算法,当然用Prim算法也一样可以解题。 #include <iostream> #include <cstring> #include <cstdio
·
2015-11-12 19:04
最小生成树
HDU 1301
Jungle
Roads
题解:最小生成树………… #include <cstdio> #include <algorithm> using namespace std; struct node{int a,b,l;}seg[900]; int f[27],m,n,a,b; char c; int sf(int x){return f[x]==x?x:f[x]=sf(f[x]);} b
·
2015-11-12 16:52
HDU
HDUOJ----1301
Jungle
Roads
Jungle
Roads Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768
·
2015-11-12 12:11
HDU
poj----(1251)
Jungle
Roads(最小生成树)
Jungle
Roads Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 
·
2015-11-11 19:56
最小生成树
HDU 1301
Jungle
Roads(裸最小生成树)
贴一个kurskral. 1 /* 2 HDU 1301
Jungle
Roads 3 最小生成树Kurskal模版 4 */ 5 #include <stdio.h>
·
2015-11-11 15:08
最小生成树
【HDU1301】
Jungle
Roads(MST基础题)
爽爆。史上个人最快MST的记录7分40s。。一次A。 1 #include <iostream> 2 #include <cstring> 3 #include <cstdlib> 4 #include <cstdio> 5 #include <cmath> 6 #include <ccty
·
2015-11-11 12:58
HDU
hdu1301
Jungle
Roads (Prim)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1301 依旧Prim............不多说了 1 #include<iostream> 2 #include<cstdio> 3 #include<algorithm> 4 5 using namesp
·
2015-11-11 10:13
Prim
hdu 1301
Jungle
Roads 最小生成树
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1301 The Head Elder of the tropical island of Lagrishan has a problem. A burst of foreign aid money was spent on extra roads between villages some yea
·
2015-11-11 09:32
最小生成树
POJ 1251
Jungle
Roads
题目连接: http://poj.org/problem?id=1251 题目大意: Lagrishan岛屿上的首领遇到一个问题。几年前外国援助的钱花在了修建两个村庄的道路上了,但是道路的毁坏是需要维修的,因此 村长必须放弃一些道路的维护。因此减少一些道路, 即使这些道路没有以前那么短了。长老们在讨论如何才能将所有的道路连通并且成本最低。你的任务就是编写一个程序来解决这个问题。 输入:
·
2015-11-11 08:19
poj
OpenJudge/Poj 1251 丛林中的路/
Jungle
Roads
1.链接地址: http://bailian.openjudge.cn/practice/1251/ http://poj.org/problem?id=1251 2.题目: 总时间限制: 1000ms 内存限制: 65536kB 描述
·
2015-11-10 22:49
open
zoj 1406 -
Jungle
Roads
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=1406 这道题让我见识了什么叫做坑跌。。。。用c输入的时候一定要注意格式,我因为输入格式没控制好,导致一直以为算法错了,调了一个多小时。。。用c++貌似好的多,没有神马空格换行的困扰,看来以后碰到格式复杂的输入可以考虑用c++的流。。。。 代码如下: prim #i
·
2015-11-09 14:04
ZOJ
HDOJ 1301
Jungle
Roads
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1301 //HDOJ1301 #include<iostream>#include<cstring> using namespace std; #define MAX 99999 #define LEN 30 int dist[LEN];//某点的权
·
2015-11-08 15:54
OA
HDU 1301
Jungle
Roads (Kruscal 最小生成树)
文章作者:ktyanny 文章来源:ktyanny 转载请注明,谢谢合作。 ktyanny:ktyanny今天有点累了,话说今天下午的马哲课3节,第一节研究了一下prim算法,在纸上画了半天也没缓过神来怎么用程序实现,很囧,改天要是弄明白了再把思路贴上来纪念一下吧。由于没想清楚要怎么实现,痛苦中困惑好累中。第二节课终于决定呼呼大睡了,第三
·
2015-11-08 12:33
最小生成树
Hdu 1301
Jungle
Roads
题意简洁,最小生成树问题。通过Prim算法求解,数据的处理有点困难。 CODE: #include <stdio.h> #include <stdlib.h> #include < string.h> using namespace std; const in
·
2015-11-08 11:24
HDU
POJ 1251
Jungle
Roads 解题报告
id=1251
Jungle
Roads Time Limit: 1000MS Memory Limit: 10000K Total Submissions
·
2015-11-07 15:56
poj
HDU 1301
Jungle
Roads (最小生成树)
Jungle
Roads Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768
·
2015-11-07 14:09
最小生成树
Javascript MVC 架构之旅
本文摘自smashingmagazine的Journey Through The JavaScript MVC
Jungle
部分内容,因为个人对于框架的应用总结和特点比较感兴趣,这里翻译了部分的内容
·
2015-11-07 13:28
JavaScript
HDU 1301
Jungle
Roads
But the
jungle
overtakes roads relentlessly, so
·
2015-11-03 22:57
HDU
Jungle
Roads---poj1251 hdu1301
But the
jungle
overtakes
·
2015-11-03 22:44
poj
HDU 1301
Jungle
Roads
这题就是是一个最小生成树问题,题目意思,给你一个数n接下来有n-1行,每一行代表一个地点与多个地点相连结,例如:A 2 B 12 I 25代表A与连接2地方B,I并且价钱为12,25; #include<stdio.h>#include<stdlib.h>struct t{ int x,y,time;}kru[1024];int set[27];int find(
·
2015-11-02 18:25
HDU
POJ 1251
Jungle
Roads
简单,赤裸的最小生成树…… 不过,有一点小障碍的地方是数据的读取!! 数据中有字符、数字掺杂这输入,整不好就读错!! 开始我用getchar()光WA,无奈又写个Readint()就可以了! View Code #include <stdio.h>#include <stdlib.h>struct Edge{ int v,u; int val;
·
2015-11-02 16:44
poj
UVa 1475 (二分+半平面交)
Jungle
Outpost
题意: 有n个瞭望塔构成一个凸n边形,敌人会炸毁一些瞭望台,剩下的瞭望台构成新的凸包。在凸多边形内部选择一个点作为总部,使得敌人需要炸毁的瞭望塔最多才能使总部暴露出来。输出敌人需要炸毁的数目。 分析: 在炸毁同样数量的瞭望塔时,如何爆破才能使暴露出的面积最大。那就是集中火力炸掉连续的几个瞭望塔。直觉上是这样的,我不会证明这个结论。因为是连续爆破,所以k次爆破后还保留的部分就是一个半平面,枚举
·
2015-11-02 15:12
post
中国有快女,美国有VMA
In New York Concrete
jungle
where dreams are made of, Theres nothing you can’t do, Now
·
2015-11-02 13:19
VM
HDOJ---1301
Jungle
Roads[最小生成树--Prim()]
Jungle
Roads Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768
·
2015-11-02 12:26
最小生成树
反编译.Net项目
作者是个叫做“
Jungle
Creatures”的公司,这里表示无比的敬仰! 这个工具是用C#写的界面。
·
2015-11-02 10:14
.net
Kruskal算法解决POJ 1251
But the
jungle
overta
·
2015-11-02 10:30
poj
HDU 1301(MST)
Jungle
Roads Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission
·
2015-11-02 09:10
HDU
poj1251
Jungle
Roads Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 
·
2015-11-02 09:50
poj
POJ 1251
Jungle
Roads
Jungle
Roads Time Limit: 1000ms Memory Limit: 10000KB This problem will be judged on PKU.
·
2015-11-01 11:25
poj
Javascript MVC架构之旅
日期:2012-9-10 来源:GBin1.com 本文摘自smashingmagazine的Journey Through The JavaScript MVC
Jungle
·
2015-11-01 08:04
JavaScript
poj1251
Jungle
Roads Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 
·
2015-11-01 08:10
poj
nyoj
Jungle
Roads (最小生成树)
Kruskal #include "iostream" #include "algorithm" using namespace std; #define MAXN 1111 struct node { int x, y, l; }p[MAXN]; int fa[MAXN]; int n, m, k; int re, num;
·
2015-10-31 09:15
最小生成树
POJ-1251
Jungle
Roads
Jungle
Roads Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 15610
·
2015-10-31 08:27
poj
Pop
Jungle
丛林爱消除是一款画面清新,效果绚丽的消除类休闲游戏。你只需要选中尽可能多的图块,并消除它们就可以得到高分,并有无限多的关卡等待你去征服。一旦你开始玩儿你将无法停止下来,如果你还是消除星星的粉丝,那你更加不能错过这款游戏。它将带给你一种超越消除星星的游戏体验。 大家可以在这里下载 https://play.google.com/store/apps/detai
·
2015-10-30 19:12
游戏
hdoj 1301
Jungle
Roads
Jungle
Roads Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768
·
2015-10-30 16:01
OA
poj 1251
Jungle
Roads 最小生成树
#include #include #include #include usingnamespacestd; constintinf=1>s>>k; //scanf("%c%d",&s,&k); u=s-'A'; for(j=0;j>s>>w; //scanf("%c%d",&s,&w); v=s-'A'; e[u][v]=e[v][u]=w; } getchar(); } for(i=0;i<
xinag578
·
2015-10-30 13:00
ACM HDU 1301
Jungle
Roads (简单最小生成树问题)
Jungle
Roads Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768
·
2015-10-30 12:57
最小生成树
POJ 1251
Jungle
Roads
Jungle
Roads Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 
·
2015-10-30 12:29
poj
Jungle
Roads_hdu_1301(prim算法)
Jungle
Roads Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768
·
2015-10-28 09:38
Prim
POJ - 1251
Jungle
Roads Time Limit: 1000MS Memory Limit: 10000K
·
2015-10-28 08:35
poj
POJ 2431Expedition
Description A group of cows grabbed a truck and ventured on an expedition deep into the
jungle
.
·
2015-10-28 07:33
exp
上一页
2
3
4
5
6
7
8
9
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他