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
arctic
poj 2349 uva 10369 -
Arctic
Network
点击打开链接uva103691题目意思:某地有s颗卫星,有p个站点,s #include #include #include #include usingnamespacestd; #defineMAXN1010 #defineINF0xFFFFFFF intt,s,p,cnt; doubleans[MAXN]; doubleG[MAXN][MAXN]; doublelowcost[MAXN];
cgl1079743846
·
2012-09-18 23:00
UVa 10369 -
Arctic
Network(求最小生成树的第k小边)
链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=1310题目:ProblemC:ArcticNetworkTheDepartmentofNationalDefence(DND)wishestoconnectseveralnort
shuangde800
·
2012-09-17 00:00
UVaOJ 10369 -
Arctic
Network
——byACodeRabbitDescription一个地区的几个城市要通讯。通讯的设备强度,可以决定一个城市,可以向周围距离多少的城市广播。因此,只需要几个城市连接上卫星,然后就可以向周围不停的广播。而收到广播的城市可以继续向周围的城市广播,就可以让更多的城市通讯。但是设备越牛逼,价格越高,因此只要距离刚刚好,就不需要买更牛逼的设备。输入城市的坐标和有几个卫星。输出设备应该达到的最短通讯距离。T
Ra_WinDing
·
2012-08-15 15:00
poj 2349
Arctic
Network
ArcticNetworkTimeLimit:2000MSMemoryLimit:65536KTotalSubmissions:5764Accepted:2007题目链接:http://poj.org/problem?id=2349DescriptionTheDepartmentofNationalDefence(DND)wishestoconnectseveralnorthernoutposts
疯的世界
·
2012-08-05 09:31
最小生成树
Android Platform 3.0 SDK和Eclipse ADT安装记录五
目录: 一、在Aptana 3上安装ADT插件 二、HTML5教程链接集 三、PhoneGap全屏问题 四、PhoneGap后退键和退出问题 五、easeljs demo 六、
arctic
.js
weimingtom
·
2012-05-11 21:00
android
QT移植之tslib 1.4.1
/configure--host=arm-linux--disable-hp3600--disable-
arctic
2--disable-mk712--disable-collie--disable-corgi
gavinfrq
·
2012-03-25 18:00
qt
移植
问题:QT移植之tslib 1.4.1
/configure--host=arm-linux--disable-hp3600--disable-
arctic
2--disable-mk712--disable-collie--disable-corgi
布谷
·
2012-03-24 12:00
tslib
QT移植
fcntl2.h
我的游戏引擎
Arctic
于是乎就有了这个
Arctic
的游戏引擎。 这个游戏引擎是用C/C+++glfw作为框架搭建的,只支持Opengl显示模式,字库用的是FreeType2,编译器用的是
general195
·
2012-03-10 20:41
游戏
源代码
搭建
编译器
注册码
我的游戏引擎
Arctic
于是乎就有了这个
Arctic
的游戏引擎。这个游戏引擎是用C/C+++glfw作为框架搭建的,只支持Opengl显示模式,字库用的是FreeType2,编译器用的是gcc。整个
general195
·
2012-03-10 20:41
注册码
源代码
编译器
游戏引擎
2349
Arctic
Network prim最小生成树 基础
图我们构造完成,调用prim算法,把该算法中每一次贪心得到的最小权边存入一个数组中。算法结束后对那个数组sort递减排序。这样,前边最大的s个用那卫星让他们通信去。然后从第s开始配给他们足够功率的对讲机使。#include usingnamespacestd; #include #include #definemax505 doublemap[max][max]; doubledis[
youngyangyang04
·
2011-10-08 12:00
zoj 1914
Arctic
Network
找最小生成树的倒数第几长边的问题 1,读入数据的处理,最终处理为结构体形式 2,快排................................ 3,并查集找结点,并记录边长大小 4,输出所求数据 <span style="font-size: 18px;">#include<stdio.h> #include<stdlib.h>
wangxiaohigh
·
2011-08-19 10:00
NetWork
zoj 1914
Arctic
Network
找最小生成树的倒数第几长边的问题1,读入数据的处理,最终处理为结构体形式2,快排................................3,并查集找结点,并记录边长大小4,输出所求数据#include #include #include #include typedefstructTedge { intfrom,to; intdist; }edge; edged
Slience_Perseverance
·
2011-08-19 10:00
zoj 1914 || poj 2349
Arctic
Network(Prim~)
给你点的坐标,计算最小生成树,然后算去掉给定数目的树上的最长边后的那条边。 我用的PRIM,先把边算出来,然后快排,再取题目要求的那条边。 我用qsort老不对。。。用sort对了。。。 排名很靠前,嘻嘻,不过,运行时间枕的是靠RP。。。 #include#include#include#include#include#include#includeusingnamespacestd;consti
zxy_snow
·
2010-09-25 12:00
ZOJ 1914
Arctic
Network (kruskal + prim )
KRUSKAL+PRIORITY_QUEUE#include#include#include#include#includeusingnamespacestd;structedge{intfrom,to;intw;}t;intpoint[501][2],p[501];intfind(inti){returnp[i]==i?i:(p[i]=find(p[i]));}structcmp{boolo
dangwenliang
·
2010-09-18 12:00
开源BT客户端程序
arctic
代码阅读笔记
arctic
是一个基于C++的libtorrent的BT客户端开源项目,
arctic
的界面比较简单,它主要关注的是低内存的消耗和性能的提升。
Garfier
·
2010-05-12 19:00
exception
list
ListView
session
File
BT
Scientists Say
Arctic
Ice Continues to Shrink
WewilltellabouticelossintheArticSea..Wealsowilltellaboutacampaigntoimprovetreatmentofsnakebites.Scientistssaytheyrecentlyfoundthatolderthickerseaicewasincreasinglyreplacedwithnewice.Thestudyfoundana
zhouhuozhi
·
2009-05-06 01:00
kill
OS
UP
each
Numbers
open source BT projects
bt等多种p2p协议,源代码复杂)2.BNBT(VC.net,BTtracker服务器源代码)(赞,适合学习,因为比较简单)3.libtorrent(c++,BT库)4.libbt(c++,BT库)5.
arctic
Free mind
·
2007-01-01 01:00
上一页
1
2
3
4
下一页
按字母分类:
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
其他