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
strange
hdu 1372(simple BFS)
adress:click here This is a basic BFS problem.But the way of knight's move is
strange
·
2012-12-22 22:00
simple
JRE1.6 and JRE1.7
strange
things with JNLP
WithJRE1.6andJRE1.7installedandbothactivatedinjavacontrolpanel.
cxyol
·
2012-11-13 17:00
【英语天天读】Account of My Travels
作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ I was always fond of visiting new scenes, and observing
strange
·
2012-10-15 18:00
count
hdu 1548 A
strange
lift
点击打开链接hdu1548思路:最短路+Dijkstra分析:数据量不大直接Dijkstra即可,但是注意要把图处理成有向图,因为题目中的电梯是有分上下两个分向的。代码: #include #include #include #include usingnamespacestd; #defineMAXN210 #defineINF0xFFFFFFF intn,A,B; intvalue[MAX
cgl1079743846
·
2012-10-07 13:00
lift
POJ2891
Strange
Way to Express Integers
题目大意&&思路:m≡r1+a1*y1 m≡r2+a2*y2 ……m≡ri+ai*yiai之间不互素,所以不是中国剩余定理,而是线性同余方程,直接模板。ACprogram: #include #include #include #include #include usingnamespacestd; typedef__int64LL; voidexgcd(LLa,LLb,
kg_second
·
2012-09-23 10:00
POJ2891
Strange
Way to Express Integers
原题传送:http://poj.org/problem?id=2891求线性同余方程组。我对线性同余方程组的求解思路是这样的:假设有同余方程组:x≡r1(moda1)(1)x≡r2(moda2)(2)此方程组可转化为:x ≡a1*t+r1(3)x ≡a2*u+r2 (4)由(3)、(4)式容易得到a1*t+r1=a2*u+r2,运用扩展欧几里得求解二元一次方程可得一个解t=x0,设d=gcd(a
·
2012-09-22 11:00
Integer
ZOJ 3191
Strange
Clock
#includeintmain(){ inti,d; intc[12]={90,60,30,0,330,300,270,240,210,180,150,120}; while(scanf("%d",&d)!=EOF&&d!=-1) { for(i=0;ic[i+1]){ printf("Between%do'clockand%do'clock\n",i,i+1); }
Wss0130
·
2012-09-09 15:00
c
HDU 1548 A
strange
lift
本以为可以用简单的dfs搜索过掉,但总WA;看了牛人的思路,此题可以转化为dijkstra题来解;对每一层的上下i+k[i]和i-k[i]合法,其路径长度置1;#include #include #include usingnamespacestd; constintN=202; constintINF=1d[u]+path[u][j]) d[j]=d[u]+path[u][j]; } } } i
qinmusiyan
·
2012-09-03 21:00
HDU1548 A
strange
lift 广搜和最短路
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1548 题目大意:就是说有一个很奇怪的升降机,它有两个按钮UP和DOWN,给你一些数i表示层数,并且每层对应的Ki,如果按UP按钮,会从第i层升到第i+Ki层;如果按了DOWN则会从第i层降到第i-Ki层;并规定能到的层数为1到N,根据常识也知道。现在的要求就是给你N,A,B和一串数K1到Kn,问你从A
No_Retreats
·
2012-08-22 15:00
c
ini
UP
n2
lift
hdu
Strange
fuction二分法不具有单调性
StrangefuctionTimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):80 AcceptedSubmission(s):62ProblemDescriptionNow,hereisafuction: F(x)=6*x^7+8*x^6+7*x^3+
hnust_xiehonghao
·
2012-08-16 19:00
URAL 1102
Strange
Dialog
一个元素一个元素往后判断,注意inputon和inputone等特殊情况的判断。用逆序判断会更加简单。代码如下:#include #include #include #include #include usingnamespacestd; chara[10000002]; intsolve() { intlen=strlen(a),flag=0; for(inti=0;i
GooMaple
·
2012-08-02 10:00
hdu 1548 A
strange
lift (bfs)
点击打开链接简单BFS。。#include"stdio.h" #include"string.h" #include"queue" usingnamespacestd; structnode { intx,step; }q,p; intmain() { intd[201],mark[202]; inta,b,n,i,ans; while(scanf("%d%d%d",&n,&a,&b)!=EOF)
yyf573462811
·
2012-07-31 18:00
hdu 1548 A
strange
lift
用bfs可以,个人觉得dfs应该很麻烦!觉得用最短路径更好理解,也容易实现,对点做预处理,用队列把有关点之间的权值设置成1,这样再用最短路径求解ProblemDescriptionThereisastrangelift.Theliftcanstopcanateveryfloorasyouwant,andthereisanumberKi(0 #include usingnamespacestd; #
taotaotaotao910429
·
2012-07-31 16:00
POJ 2891
Strange
Way to Express Integers 非互质的中国剩余定理
来源:http://poj.org/problem?id=2891题意:有一个数x,x=r[i](moda[i]),其中a[i]和a[j]不一定互质,求x的最小值。思路:很容易看到这题和中国剩余定理是有联系的。因为倘若任意的a[i]和a[j]互质,则满足中国剩余定理。中国剩余定理还是好理解的,这里就不多说了,主要说一下不互质情况下如何转化为互质下的中国剩余定理。转化主要是用了合并的思想。设x=r1
wmn_wmn
·
2012-07-31 09:00
HDU-1548-A
strange
lift
HDU-1548-Astrangelifthttp://acm.hdu.edu.cn/showproblem.php?pid=1548基本的BFS,上下两个方向搜索#include #include #include #include #include usingnamespacestd; intn; intvisit[205]; intnum[205]; structnode { intx; i
Cambridgeacm
·
2012-07-25 08:00
struct
Go
lift
HDOJ 1548 A
strange
lift (BFS)
http://acm.hdu.edu.cn/showproblem.php?pid=1548题意:一个电梯,在第i层只能选择上或下k[i]层(任何时候都不超过顶楼且不低于1楼),求从A到B层最少要按几下电梯按钮?思路:BFS#include #definemaxn222 typedefstruct { intfloor,go,cnt;//floor为当先在的楼层,go为可上、下楼层数,cnt为
sdc1992
·
2012-07-16 14:00
struct
Go
lift
发现Tapestry5 MaxLength Validator bug
有位老外回答:http://tapestry.1045711.n5.nabble.com/A-
strange
-error-with-MaxLength-Validator-td5546700.htmlLookslikeyou'vefoundabug
神勇小白鼠
·
2012-06-21 12:00
Conversion to Dalvik format failed: Unable to execute dex 解决之道
As Android developer, I have met a
strange
&
justwyy
·
2012-05-22 16:00
conversion
zoj 3191
Strange
Clock
//直接就可以写出来了,很简单的一题! #include"iostream" usingnamespacestd; intmain() { inta; while(cin>>a&&a!=-1) { if(a==0) cout0&&a30&&a60&&a90&&a120&&a150&&a180&&a210&&a240&&a270&&a300&&a330&&a<360) cout<<"Between
yzl_rex
·
2012-04-13 13:00
360
POJ 1958
Strange
Towers of Hanoi [dp]
题意:汗诺塔问题。改成4个柱子了,解法已经在题目中给定。思路:其实就两个状态方程:dp3[i]=2*dp3[i-1]+1;dp4[i]=Min(dp4[i],2*dp4[k]+dp3[i-k]);ps:什么我觉得linux下的csdn博客编辑比windows下的好看多了。#include #include #include #include #defineMax(a,b)((a)>(b)?(a):
wuyanyi
·
2012-04-01 19:00
windows
linux
【搜索之BFS】杭电 hdu 1548 A
strange
lift
/* THE PROGRAM IS MADE BY PYY */ /*----------------------------------------------------------------------------// Copyright (c) 2012 panyanyany All rights reserved. URL
panyanyany
·
2012-04-01 18:00
搜索
bfs
【搜索之BFS】杭电 hdu 1548 A
strange
lift
/*THEPROGRAMISMADEBYPYY*/ /*----------------------------------------------------------------------------// Copyright(c)2012panyanyanyAllrightsreserved. URL:http://acm.hdu.edu.cn/showproblem.php?pid=1
panyanyany
·
2012-04-01 18:00
【搜索之BFS】杭电 hdu 1548 A
strange
lift
/* THE PROGRAM IS MADE BY PYY */ /*----------------------------------------------------------------------------// Copyright (c) 2012 panyanyany All rights reserved. URL : http://acm.hdu
txf2004
·
2012-04-01 18:00
杭电 hdu
HDOJ 1548 A
strange
lift (bfs)
ProblemDescriptionThereisastrangelift.Theliftcanstopcanateveryfloorasyouwant,andthereisanumberKi(0 intn=0,a=0,b=0; typedefstruct { intcurrent,count,go; }node; nodequene[202],array[202];//用array[i]来存储每
ulquiorra0cifer
·
2012-03-20 15:00
hdoj 1548 A
strange
lift(bfs)
【题目大意】:给出n层楼,每层楼可以乘坐电梯,规定在第i层乘坐的电梯移动的层数为ki,可以向上移动也可以向下移动,每移动一次要按一次电梯,且移动完不能低于1层,也不能高于n层。问从a到b最少按多少次电梯。【解题思路】:bfs【代码】:#include #include #include #include #include #include #include #include #include #i
new_wu
·
2012-03-12 23:00
lift
Really
Strange
!!
#include #include #defineMAX11000 voidreverse(char*from,char*to); voidcall_mult(char*first,char*second,char*result); voidcall_minus(char*first,char*second,char*result); voidcall_add(char*first,char*
wuli2496
·
2012-03-02 21:00
If 1 equals 2, what’s the purpose?
equals-2-whats-purpose.html While debugging standard SAP ABAP code you might find for first look very
strange
huang850625
·
2012-02-16 10:00
equals
Weblogic 11g JSP cache
user_projects\domains\yourdomain\servers\yourserver\tmp\_WL_user\your_app_name We always meet a
strange
george.gu
·
2012-01-31 00:00
weblogic
提交iPhone app程序遇到newsstand错误
theinfo.plistmustincludetheuinewsstandapp=true.参看http://stackoverflow.com/questions/6977357/xcode-gave-
strange
-newsstand-error-when-trying-to-submit-an-app
delphi090902
·
2011-12-02 15:00
Bird-brain 没头脑的人
But love does
strange
things to people
andyyou88
·
2011-11-24 13:00
in
真机测试时不小心拔掉机器导致的 一个bug及解决方案
参考帖子:http://stackoverflow.com/questions/788277/iphone-
strange
-error-when-testing-on-simulator 真机测试的时候不小心吧
xumingrencai
·
2011-10-24 18:00
解决方案
mac下监控风扇转速
Strange
, for pwm num is 3, but fan num is 5. store_pwm
fkpwolf
·
2011-10-10 18:00
mac
mac下监控风扇转速
阅读更多store_pwm:setzhuanshu,{0x109,0x209,0x309}.linuxdriverreadspeedfromthisREGalso(nct6775_update_pwm).
Strange
fkpwolf
·
2011-10-10 18:00
The World As I See It
The World As I See It - Albert Einstein - How
strange
is the lot of us mortals!
arlxy
·
2011-10-08 22:00
Storm :twitter的实时数据处理工具
Twitter在9月19日的
Strange
Loop大会上公布Storm的代码。这个类似于Hadoop的即时数据处理工具是BackType开发的,后来被Twitter收购用于Twitter。
yiihsia d0ngd0ng
·
2011-09-20 01:00
互联网
分布式
架构
海量数据
实时计算
Storm :twitter的实时数据处理工具
Twitter在9月19日的
Strange
Loop大会上公布Storm的代码。这个类似于Hadoop的即时数据处理工具是BackType开发的,后来被Twitter收购用于Twitter。
yiihsia
·
2011-09-19 22:00
mapreduce
流
并行
数据处理
实时
Hdu-1548 A
strange
lift
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1548题目大意:有一个建筑有N层,里面有一架电梯。给你一个起点层数和一个终点层数。thereisanumberKi(0=1,则把i到i-button[i]的路径长度设为1.则最后输出终点的最短路的长度即可。。。。代码如下:#include #include #include #include #incl
niushuai666
·
2011-09-19 09:00
Strange
GCC error: expected unqualified-id before ‘OTHER’ token
http://www.mr-edd.co.uk/blog/unqualified_id_before_otherStrangeGCCerror:expectedunqualified-idbefore‘OTHER’token[28thJanuary2011]Abriefinterludeintheundo/redoseries.JustpostingthisheresothatGooglecani
ani_di
·
2011-09-08 15:00
apple
gcc
Google
File
vim
token
杭电 hdu 1548 A
strange
lift
/* THE PROGRAM IS MADE BY PYY */ /*----------------------------------------------------------------------------// Copyright (c) 2011 panyanyany All rights reserved. URL : http://acm.hdu.edu.c
panyanyany
·
2011-08-25 19:00
ACM
最短路
dijkstra
单向图
杭电 hdu 1548 A
strange
lift
/* THE PROGRAM IS MADE BY PYY */ /*----------------------------------------------------------------------------// Copyright (c) 2011 panyanyany All rights reserved. URL : http://acm.hdu.edu.cn/
txf2004
·
2011-08-25 19:00
杭电 hdu
杭电 hdu 1548 A
strange
lift
/*THEPROGRAMISMADEBYPYY*/ /*----------------------------------------------------------------------------// Copyright(c)2011panyanyanyAllrightsreserved. URL:http://acm.hdu.edu.cn/showproblem.php?pid=1
panyanyany
·
2011-08-25 19:00
hdu
Strange
fuction
Strange
fuction Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
·
2011-08-24 20:00
HDU
poj 1958
Strange
Towers of Hanoi dp,需要仔细读题
这道题应该仔细读题啊!!!题应经告诉你状态转移方程,我做这道题的时候就不淡定了,看的结题报告,在重新读题的时候豁然开朗废话不多说,先将n-k个用四个柱从a移到b,再将剩余的k用三个柱从a移到d,再用四个柱把n-k从b移到d,至于k的大小需要建立一个状态方程看看口味多大事,所用时间最小 #includeusingnamespacestd;inth3[15],h4[15];//表示3个柱,和四个柱in
youngyangyang04
·
2011-08-20 13:00
UVA 11529
Strange
Tax Calculation
如果不是做过HDU的3629,估计这题会卡很多。。HDU的3629是求给你N个点,问你能组成多少个凸的四边形。当时的做法就是,求出有多少个凹的四边形,然后拿C(n,4)减去凹的数目即可。而这个题是求所有三角形区域中包含的内点的个数,其实想一想,不就是求凹的四边形有多少个么。然后拿那个题的代码改改,就过了,而且居然还排第一了。。。哈哈。。不过当初做HDU的那个题可是费了不少事==。。对每个点进行极角
zxy_snow
·
2011-08-19 14:00
c
struct
英國:失控的推特標籤 #都怪穆斯林
SanumGhafoor在推特上的帳號是@
Strange
_Sanum,她是一名住在英國的19歲穆斯林學生。
Hsu-Lei Lee chris
·
2011-08-10 06:00
English
Ethnicity
種族
Feature
Internet
&
Telecoms
網路與電訊
Norway
挪威
英國:失控的推特標籤 #都怪穆斯林
SanumGhafoor在推特上的帳號是@
Strange
_Sanum,她是一名住在英國的19歲穆斯林學生。
Hsu-Lei Lee chris
·
2011-08-09 22:00
english
&
internet
feature
挪威
Ethnicity
種族
Norway
Telecoms
網路與電訊
hdu 1548 A
strange
lift(简单的bfs)
A
strange
lift Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768
gzhu_101majia
·
2011-08-02 21:00
数据结构
C++
c
算法
ACM
HDU 1548 A
strange
lift .
A
strange
lift Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K
sgeteternal
·
2011-07-31 19:00
C++
bfs
hdu 2899
Strange
fuction
很好的数学题,求导判断+二分找最小点http://acm.hdu.edu.cn/showproblem.php?pid=2899#include #include #include #include #include #include #include #include #include #include #include #include #include #inclu
leolin_
·
2011-07-10 22:00
[2010-07-18]android the mobile linux UPDATED
the theme system is also
strange
, which i had to install an app called ADW.
crispgm
·
2011-05-21 02:00
linux
android
mobile
Symbian
Windows Mobile
上一页
8
9
10
11
12
13
14
15
下一页
按字母分类:
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
其他