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
Cities
hdu 2874 Connections between
cities
最近公共祖先lca(离线算法/tarjan算法)
#include #include #include #include #include #include usingnamespacestd; constintmaxn=1e4+10; constintmaxc=1e6+10; structnode{ intto,w; node(inta=0,intb=0){to=a;w=b;} }; intf[maxn],dis[maxn],n,ans[max
a601025382s
·
2013-08-31 22:00
lca离线算法
Battle Over
Cities
(25)
题目链接:http://pat.zju.edu.cn/contests/pat-a-practise/1013题目描述:Itisvitallyimportanttohaveallthecitiesconnectedbyhighwaysinawar.Ifacityisoccupiedbytheenemy,allthehighwaysfrom/towardthatcityareclosed.Wemus
realxuejin
·
2013-08-29 15:00
pat
cc++
源码阅读随想
以下文字摘自:笨方法学Python41这里是我们要讨论的代码:
cities
['_find']=find_city city_found=
cities
['_find'](
cities
,state) 你要记住一个函数也可以作为一个变量
duqi_2009
·
2013-08-28 10:00
HDU4606 Occupy
Cities
计算几何+最小路径覆盖
题目大意如下在一个二维坐标系中,有n个城市,坐标给出来了,然后有p个士兵要去占领这n个城市,但是路上有m个路障,都是线段,士兵不能越过路障前进。每个士兵都有相同容量大小的一个干粮袋,每到一个城市他就能补充满自己的干粮袋。中途走路时走一个单位长度就消耗一个单位的干粮。现在问的是这些个干粮袋最小的容量是多少,前提是保证p个士兵能占领完这n个城市,城市被占领顺序也是题目给好的,必须遵守思路:P个士兵占领
sdj222555
·
2013-08-15 09:00
HDU 4606 Occupy
Cities
解题报告
题目2013多校训练第一场题意:有n个城市,m个边界线,p名士兵。现在士兵要按一定顺序攻占城市,但从一个城市到另一个城市的过程中不能穿过边界线。士兵有一个容量为K的背包装粮食,士兵到达一个城市可以选择攻占城市或者只是路过,如果攻占城市,就能装满背包。从城市到城市消耗的粮食等于两城市的距离,如果距离大于士兵当前的背包的容量,士兵就不能走这条路。士兵可以选择空降一次,空降不耗费。求p个士兵攻占完所有城
u010638776
·
2013-07-25 20:00
hdu3371 Connect the
Cities
ConnecttheCitiesTimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):6362 AcceptedSubmission(s):1838ProblemDescriptionIn2100,sincethesealevelrise,mostofthec
guodongxiaren
·
2013-07-25 11:00
kruskal
MST
hdu3371
HDU 4606 Occupy
Cities
(计算几何+最短路+最小路径覆盖)
转载请注明出处,谢谢http://blog.csdn.net/ACM_cxlove?viewmode=contents by---cxlove题目:给出n个城市需要去占领,有m条线段是障碍物,有p个士兵可以用。占领城市有个先后顺序,每个士兵有个背包,占领城市之后,仅能补给一次背包。问背包容量最少是多少,可以用这P个士兵完成任务,起点任意。http://acm.hdu.edu.cn/showpr
ACM_cxlove
·
2013-07-24 21:00
简单的注册提交
java代码 publicclassMainActivityextendsActivity{ privatestaticfinalString[]
cities
={"北京","上海","武汉","
何先生
·
2013-07-19 11:00
android
CF 141 div2 D(2-SAT)
E.TheRoadtoBerlandisPavedWithGoodIntentionstimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputBerlandhas n
cities
Wiking__acm
·
2013-07-18 20:00
Battle Over
Cities
(25)-PAT
1013.BattleOverCities(25)时间限制400ms内存限制32000kB代码长度限制16000B判题程序Standard作者CHEN,YueItisvitallyimportanttohaveallthecitiesconnectedbyhighwaysinawar.Ifacityisoccupiedbytheenemy,allthehighwaysfrom/towardthat
zoushidexing
·
2013-07-16 20:00
hdu3371 Connect the
Cities
(最小生成树)
#include #include usingnamespacestd; structnode { intx,y,val; }w[25002*3]; intfather[505]; boolcmp(constnode&a,constnode&b) { returna.val #include #defineINF10000000 #defineMAX505 intmap[MAX][MAX];
lezong2011
·
2013-07-13 09:00
Unity3D中使用MiniJson解析json的例子
-------------------------{ "name":"中国", "province":[ { "name":"黑龙江", "
cities
·
2013-07-04 20:00
unity3d
Problem D hdu 3371 Connect the
Cities
ConnecttheCitiesTimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):5956 AcceptedSubmission(s):1733ProblemDescriptionIn2100,sincethesealevelrise,mostofthec
u010228612
·
2013-06-18 00:00
HDU 3371 Connect the
Cities
并查集+Kruskal算法+最小生成树
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3371代码如下:注意在杭电提交:G++会超时,可以用C++,可能是sort()函数的问题。#include #include #include #include usingnamespacestd; #defineMAX255003 intfather[502]; intn,m,k; typedefs
xianglunxi
·
2013-06-05 13:00
最小生成树
ACM
并查集
kruskal
dict的秘密[摘自笨方法学习python]
##下面这一段函数,没怎么看懂,所以拿出来分析一下
cities
={'CA':'SanFrancisco','MI':'Detroit', 'FL':'Jacksonville'}
cities
pm_dba
·
2013-05-21 23:00
python
dict
关于数组的总结!
定义数组 数据类型[]数组名;或者数据类型数组名[]如int[]scores;//intscores[];Stringcities[];//String[]
cities
;分配内存空间数
liudao7994
·
2013-05-15 09:00
Battle Over
Cities
(25)
题目地址:http://pat.zju.edu.cn/contests/pat-a-practise/1013深度优先搜索的问题。代码如下://#include"StdAfx.h" #include #include #include #include #include #include #include usingnamespacestd; boolconnect[1010][1010],f[
eli850934234
·
2013-05-11 21:00
编程
ACM
pat
浙大
hdu 3371 Connect the
Cities
ConnecttheCitiesTimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):5956 AcceptedSubmission(s):1733ProblemDescriptionIn2100,sincethesealevelrise,mostofthec
u010228612
·
2013-05-11 20:00
poj_3371Connect the
Cities
(最小生成树)
ConnecttheCitiesTimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):5793 AcceptedSubmission(s):1701ProblemDescriptionIn2100,sincethesealevelrise,mostofthec
lgh1992314
·
2013-05-09 09:00
hdu 3371 Connect the
Cities
........................................................................................................................................................................................只是最小生成树的变化,题意是将几
u010138811
·
2013-05-01 16:00
最小生成树
并查集
Ext学习笔记之Combobox
[1,"大连市"], [2,"旅顺市"], [3,"瓦房店市"], [4,"普兰店市"] ]; /*创建MemoryProxy*/ varproxy=newExt.data.MemoryProxy(
cities
jeffsui
·
2013-04-30 15:00
Hdu 3371 - Connect the
Cities
最小生成树,Prim算法 注意:1.若第一次添加边之后min等于max,证明此图不连通,则输出-1;不然继续。2.将已经联通的城市的map[][]置为0,不在选择范围内。 AC代码:#include #include #include #include intmap[505][505],v[505],low[505],t[105]; intn,sum,min,flag; constintmax=
Chuck_0430
·
2013-04-26 23:00
中国省市列表的JSON数据
就从百度的JS里提取出来过程很简单,将下面的代码保存成一个html文件,用浏览器打开这个文件就可以看到了 $(document).ready(function(){ $("#china_
cities
noodies
·
2013-04-22 18:00
个别元素的绑定(<%:Html.DropDownListFor()%>)
ViewBag.Provinces,"Id","Name"),"---请选择省份---")%> x.CityId,newSelectList((IEnumerable)ViewBag.
Cities
TianGaojie123abc
·
2013-04-09 13:00
Codeforces 144D. Missile Silos 最短路
D.MissileSilostimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputAcountrycalledBerlandconsistsof n
cities
cyendra
·
2013-04-08 15:00
题解
图论
codeforces
结构体数组初始化
4497次structcity{ charname[20]; doublepopulation; doublehousing; doubleave; }; citycities[2];
cities
dengziliang001
·
2013-03-26 11:00
Spring学习笔记之SpEL
SpEL被使用在XML配置文件中,以#{}作为标记,需在引号内使用,如:从这个例子可以大概了解到SpEL的功能,它从
cities
数组中取出所有population属性大于100000的city,然后将name
chatoninfo
·
2013-03-12 11:28
Spring
Battle Over
Cities
(25)
考察并查集#include #include #include #include #include #include #include #include usingnamespacestd; intn;//numberofcity intm;//numberofedge intk;//numberofquery typedefstructEdge { intv; Edge(int_v):v(_v
sunbaigui
·
2013-03-10 20:00
pat
ZJU
Battle Over
Cities
(25) DFS
Itisvitallyimportanttohaveallthecitiesconnectedbyhighwaysinawar.Ifacityisoccupiedbytheenemy,allthehighwaysfrom/towardthatcityareclosed.Wemustknowimmediatelyifweneedtorepairanyotherhighwaystokeeptheres
ryvipa
·
2013-03-01 21:00
HDU 3371 Connect the
Cities
最小生成数
题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=3371 题意:第一行代表有多少组测试数据;接下来一行有三个数字n、m、k。n代表有多少个点,m代表下面有多少个可以修的道路,k稍后再说。然后有m行,每行三个数字p、q、c,代表在p和q之间修一条路需要花费c。最后还有k行,每行第一个数字n,然后这一行后面有n个数,代表这n个点之间的道路已经存在(不需要再
ilovexiaohao
·
2013-02-16 13:00
CF-27D. Ring Road 2(涂色)
D.RingRoad2timelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputItiswellknownthatBerlandhas n
cities
nealgavin
·
2013-02-08 16:00
PostgreSQL学习笔记3之表的继承和分区
1.第一个继承表: CREATETABLE
cities
( --父表 name text, populationfloat, altitude int
shihuacai
·
2013-01-31 21:00
PostgreSQL 关于在表之间连接
要实现这个目标,我们需要拿weather表每行的city字段和
cities
表所有行的name字段进行比较,并选取那些这些数值相匹配的行。【注意】这里只是一个概念上的模型。连
扁豆焖面先生
·
2012-12-31 13:00
PostgreSQL
表关联
奢侈品的零售渠道是怎样的?正规商场里是否有假货?
如:Bulgari宝格丽(14
cities
,22shops)北京:王府半岛酒店,国贸商城,新光天地,乐天银泰,首都机场
方磊
·
2012-12-28 02:00
奢侈品
零售
正规
PAT1013 Battle Over
Cities
Sample Input 3 2 3 1 2 1 3 1 2 3 Sample Output 1 0 0 #include <iostream> #include <string.h> using namespace std; int map[1000][1000]={0}; int copy_map[1000][1
风吹过PP好冷
·
2012-11-29 23:00
over
PostgreSQL学习手册(表的继承和分区)
1.第一个继承表: CREATETABLE
cities
( --父表 name text, populationfloat, altitude int
zdq0394
·
2012-11-25 22:00
Interviewstreet 题目一枚
题目是这样的: Connectthecountry(20Points)Wehaveacountrycontaining N
cities
.Eachdaywechoose2citiessuchthatthereisnoroadbetweenthemandbuildaroadbetweenthem.Wechooseeachp
envy2002
·
2012-11-09 09:00
算法
HDU 3371 Connect the
Cities
DescriptionIn2100,sincethesealevelrise,mostofthecitiesdisappear.Thoughsomesurvivedcitiesarestillconnectedwithothers,butmostofthembecomedisconnected.Thegovernmentwantstobuildsomeroadstoconnectallofthes
ultimater
·
2012-10-10 20:00
zoj 2433 Highways(英语是硬伤啊)
Limit: 65536 KB Special Judge In a distant country Lineland there are N
cities
·
2012-10-05 15:00
ZOJ
HDU-3371-Connect the
Cities
HDU-3371-ConnecttheCitieshttp://acm.hdu.edu.cn/showproblem.php?pid=3371最小生成树,已知有些节点已经相连#include #include #include structcam { intx; inty; intlen; }list[25005*3]; intf[505]; intn,m,k; intfind(intx) { i
Cambridgeacm
·
2012-08-11 19:00
list
struct
System
CAM
2012.8.9 单词 The best
cities
to live in are revealed
来源:http://www.bbc.co.uk/worldservice/learningenglish/language/wordsinthenews/2012/08/120806_witn_culture_city.shtmlThebestcitiestoliveinare revealedBorisJohnson, mayor(市长) ofLondon:Peoplearecomingfrom
xiaocaichonga
·
2012-08-09 08:00
report
HDOJ 2874 Connections between
cities
原来莫名的超时,稍微改了一下就过了,还是改了的好啊。LCA的Tarjan算法,和原来是一样的,不过这是个深林不是树,所以还要用并查集确定的找到每个树的根,完后再进行Tarjan.和原来的howfaraway想必多了一个找树的过程。代码:#include #include usingnamespacestd; #definemaxn10050 structEdge { intv,w,next; }e
aacm1992
·
2012-07-27 16:00
Connect the
Cities
&&http://acm.hdu.edu.cn/showproblem.php?pid=3371
最小生成树变形题,不解释,这里输入量比较多,最好用一下输入外挂。。。AC代码:#include #include #include #include #include #include #include #defineN80000 #defineM505 usingnamespacestd; typedefstruct { intx; inty; intlen; }Node; Nodes[N];
smallacmer
·
2012-07-26 10:00
Hdu 2874 Connections between
cities
(数据结构_LCA)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2874题目大意: 给你一个n个节点m条边的森林,再给定q个查询,每次查询森林里两个点的最近距离。n,m #include #include usingnamespacestd; #defineMIN11000 #defineMAX1100000 structnode{ intv,len; }cur
woshi250hua
·
2012-07-20 02:00
Connections between
cities
&&2009 Multi-University Training Contest 8 - Host by BJNU
ProblemDescriptionAfterWorldWarX,alotofcitieshavebeenseriouslydamaged,andweneedtorebuildthosecities.However,somematerialsneededcanonlybeproducedincertainplaces.Soweneedtotransportthesematerialsfromcit
smallacmer
·
2012-07-18 17:00
关于PostgreSQL的表继承
test=# CREATE TABLE
cities
( -- 父表 test(# name text, test(# population
woody1983
·
2012-06-20 10:00
PostgreSQL
extjs proxy reader store 用法及例子
Ext.onReady(function(){ var
cities
=[ [1,"北京"], [2,"上海"],
chenlin10058
·
2012-06-20 08:00
reader
JS省市联动 需要引用JQUERY包
functionselectProvinceCity(p,c){this.selProvince=document.getElementById(p); this.selCity=document.getElementById(c); this.
cities
wyodyia
·
2012-06-06 16:00
使用CREATE VIEW创建视图
重命名这些列避免了两列从基础表继承相同的列名city CREATE VIEW
cities
(au_id, au_city, pub_id, pub_city) AS
martin2350
·
2012-05-26 20:00
两个MYSQL表关联查询
而现在有了这个语句可以简化成只执行1次语句循环一次$result=mysql_query(”SELECTstates.state_id,states.state_name,
cities
.city_id,
rushkid02
·
2012-04-30 15:00
JOIN
sql
sql
数据库
mysql
server
query
上一页
10
11
12
13
14
15
16
17
下一页
按字母分类:
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
其他