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
FAMOUS
Codeforces Round #310 (Div. 2) A. Case of the Zeros and Ones 水题
MB 题目连接 http://codeforces.com/contest/556/problem/A Description Andrewid the Android is a galaxy-
famous
·
2015-10-21 12:36
codeforces
Codeforces Round #310 (Div. 1) B. Case of Fugitive set
MB 题目连接 http://codeforces.com/contest/555/problem/B Description Andrewid the Android is a galaxy-
famous
·
2015-10-21 12:35
codeforces
Codeforces Round #310 (Div. 1) A. Case of Matryoshkas 水题
MB 题目连接 http://codeforces.com/contest/555/problem/A Description Andrewid the Android is a galaxy-
famous
·
2015-10-21 12:34
codeforces
ZOJ3673:1729
It is also known as the Hardy-Ramanujan number after a
famous
anecdote of the British mathematician
·
2015-10-21 12:02
ZOJ
CodeForces 558A
Lala Land is
famous
with its apple trees growing everywhere. Lala Land has exactly n
·
2015-10-21 11:55
codeforces
hdu 4739 Zhuge Liang's Mines 随机化
pid=4739 Description In the ancient three kingdom period, Zhuge Liang was the most
famous
·
2015-10-21 10:54
HDU
Codeforces Gym 100187K K. Perpetuum Mobile 构造
Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/100187/problem/K Description The world
famous
·
2015-10-21 10:48
codeforces
codeforces Gym 100187J J. Deck Shuffling dfs
Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/100187/problem/J Description The world
famous
·
2015-10-21 10:48
codeforces
JAVA 线程基本知识汇总--Join yield
Join让执行这个方法的线程插队,让当前县城执行完再执行别的线程package org.
famous
.unyielding.current.jooin; public class ThreadJoinClient
zheng_pat
·
2015-10-02 06:00
简单工厂模式
package org.
famous
.unyielding.design.abstractactory; import java.io.InputStream; public interface XMLParser
zheng_pat
·
2015-09-25 04:00
HDU 4252A
Famous
City
#include #include #include usingnamespacestd; inta[1000005],x,len; intmain() { intn,i,cas=1,ans,j; while(~scanf("%d",&n)) { ans=0; for(i=0;i=0;j--) { if(a[i]>a[j]) break; elseif(a[i]==a[j]) { ans++; b
zyx520ytt
·
2015-09-20 13:00
字符串排序
y样例: 输入: A
Famous
Saying: Mu
huangfei711
·
2015-07-29 14:00
C++
冒泡排序
IO
字符串排序
华为OJ
Codeforces Round #312 (Div. 2) A.Lala Land and Apple Trees
Lala Land is
famous
with its apple trees growing everywhere. Lala Land has exactly n appl
·
2015-07-25 23:00
codeforces
ACM-The
Famous
Clock
描述Mr.B,Mr.GandMr.MarenowinWarsaw,Poland,forthe2012’sACM-ICPCWorldFinalsContest.They’vedecidedtotakea5hourstrainingeverydaybeforethecontest.Also,theyplantostarttrainingat10:00eachdaysincetheWorldFinalC
u012701023
·
2015-05-27 13:00
VF(动态规划)
He decided to make an important contribution to the science and to become
famous
all ov
·
2015-05-25 23:00
动态规划
HDU:4255 A
Famous
Grid(构造+BFS)
题意:给一个表,问两个位置之间的最短距离是多少,其中素数位置不能经过。思路:坐标范围是10000,也就是说这个表大约是100*100,当然题目中表是无穷大的,由于有些位置不能走实际上可能会大于100*100。这样构造一个大点的表判断一下素数位置,每次查询直接bfs求最短路即可。#include #include #include #include #include #include #includ
kkkwjx
·
2015-04-18 14:00
bfs
构造
HDU:4252 A
Famous
City(单调栈)
题意:给一些从正面看得到的楼的高度,问最少可能有多少楼。思路:单调栈。用一个栈维护一个单调递增序列。如果栈空或栈顶小于当前元素可将当前元素压栈,如果小于栈顶元素则将栈顶元素弹出并将答案加一,相同则无视。注意存在0的情况,即如果楼的高度是0不需要将该数字压栈。#include #include #include #include #include #include #include #include
kkkwjx
·
2015-04-18 14:00
单调栈
HDU:4251 The
Famous
ICPC Team Again(划分树)
题意:给一组数字,多次查询求中位数。思路:划分树。#include #include #include #include #include #include #include usingnamespacestd; constintmaxn=100005; structDivideTree { intsorted[maxn],dat[20][maxn]; inttoleft[20][maxn]; v
kkkwjx
·
2015-04-18 14:00
数据结构
划分树
HDU:4249 A
Famous
Equation(数位DP)
题意:给一个表达式形如a+b=c,其中一些数字为?,问使表达式成立有多少种情况。思路:不太容易发现是一道数位DP。比较容易建立状态转移方程,dp[i][j][k][l]表示j(0表示不进位,1表示进位)使a的第i位为k,b的第i位为l的情况个数,这样可以计算得c的第i位。用线性时间枚举位数,10^2枚举过去状态,10^2枚举现在状态建立转移即可。最后累加求和。注意前导零的问题。给一组数据??+??
kkkwjx
·
2015-04-18 14:00
动态规划
数位dp
杭电OJ第4247题 A
Famous
ICPC Team
杭电OJ第4247题,AFamousICPCTeam(题目链接)。AFamousICPCTeamProblemDescriptionMr.B,Mr.G,Mr.MandtheircoachProfessorSareplanningtheirwaytoWarsawfortheACM-ICPCWorldFinals.Eachofthefourhasasquare-shapedsuitcasewithsi
yjf_victor
·
2015-04-15 22:00
杭电OJ第4252题 A
Famous
City
杭电OJ第4252题 AFamousCity(题目链接)。AFamousCityProblemDescriptionAfterMr.BarrivedinWarsaw,hewasshockedbytheskyscrapersandtookseveralphotos.Butnowwhenhelooksatthesephotos,hefindsinsurprisethatheisn'tabletopoi
yjf_victor
·
2015-04-15 22:00
杭电OJ第4255题 A
Famous
Grid
杭电OJ第4255题,AFamousGrid(题目链接)。AFamousGridProblemDescriptionMr.Bhasrecentlydiscoveredthegridnamed"spiralgrid".Constructthegridlikethefollowingfigure.(Thegridisactuallyinfinite.Thefigureisonlyasmallparto
yjf_victor
·
2015-04-15 22:00
杭电OJ第4245题 A
Famous
Music Composer
杭电OJ第4245题,AFamousMusicComposer(题目链接)。AFamousMusicComposerProblemDescriptionMr.Bisafamousmusiccomposer.Oneofhismostfamousworkwashissetofpreludes.These24piecesspanthe24musicalkeys(therearemusicallydist
yjf_victor
·
2015-04-15 22:00
杭电OJ第4256题 The
Famous
Clock
杭电OJ第4256题,TheFamousClock(题目链接)。TheFamousClockProblemDescriptionMr.B,Mr.GandMr.MarenowinWarsaw,Poland,forthe2012’sACM-ICPCWorldFinalsContest.They’vedecidedtotakea5hourstrainingeverydaybeforethecontest
yjf_victor
·
2015-04-15 22:00
A
Famous
Music Composer
描述Mr.Bisafamousmusiccomposer.Oneofhismostfamousworkwashissetofpreludes.These24piecesspanthe24musicalkeys(therearemusicallydistinct12scalenotes,andeachmayusemajororminortonality).The12distinctscalenote
zsc2014030403015
·
2015-03-09 15:00
C++
NYOJ 25 A
Famous
Music Composer
AFamousMusicComposer时间限制:1000 ms | 内存限制:65535 KB难度:1 描述Mr.Bisafamousmusiccomposer.Oneofhismostfamousworkwashissetofpreludes.These24piecesspanthe24musicalkeys(therearemusicallydistinct12scalenotes,ande
Tiey
·
2015-02-28 12:00
CyclicBarrier
package com.
famous
.thread.CyclicBarrier; import java.util.concurrent.BrokenBarrierException; import
zheng_pat
·
2015-02-01 23:00
semaphore例子
package com.
famous
.thread.semapore; import java.util.concurrent.Executor; import java.util.concurrent.ExecutorService
zheng_pat
·
2015-02-01 22:00
线程Join
package com.
famous
.thread.join; public class ThreadJoinClient { public static void main(String[] args
zheng_pat
·
2015-02-01 20:00
Timer& ScheduledThreadPoolExecutor 区别
package com.
famous
.thread.TimerExample; import java.util.Timer; import java.util.TimerTask; public
zheng_pat
·
2015-01-25 22:00
Install SQLite
http://www.tutorialspoint.com/sqlite/sqlite_installation.htm The SQLite is
famous
for its great feature
·
2015-01-07 11:00
Install
分布式系统理论
FLP One
famous
theory in distributed computing, known as FLP after the authors Fischer, Lynch, and Patterson
bit1129
·
2014-12-06 01:00
分布式
分布式系统理论
FLP One
famous
theory in distributed computing, known as FLP after the authors Fischer, Lynch, and Patterson
bit1129
·
2014-12-06 01:00
分布式
分布式系统理论
FLP One
famous
theory in distributed computing, known as FLP after the authors Fischer, Lynch, and Patterson
bit1129
·
2014-12-06 01:00
分布式
nyoj107&&hdu A
Famous
ICPC Team
AFamousICPCTeam时间限制:1000 ms | 内存限制:65535 KB难度:2描述Mr.B,Mr.G,Mr.MandtheircoachProfessorSareplanningtheirwaytoWarsawfortheACM-ICPCWorldFinals.Eachofthefourhasasquare-shapedsuitcasewithsidelengthAi(1 #inc
u012349696
·
2014-11-29 21:00
nyoj
https://www.airpair.com/ionic-framework/posts/hybr
https://www.airpair.com/ionic-framework/posts/hybrid-apps-ionic-
famous
-f7-onsenHybridApp框架大乱斗
ifeixiang
·
2014-11-24 18:00
VF
He decided to make an important contribution to the science and to become
famous
all over the world.
·
2014-11-02 17:00
hdu 4249 A
Famous
Equation (dp 细节)
AFamousEquationTimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):514 AcceptedSubmission(s):153ProblemDescriptionMr.Bwritesanadditionequationsuchas123+321
u010228612
·
2014-10-23 21:00
HDOJ 4249 A
Famous
Equation DP
DP:DP[len][k][i][j]再第len位,第一个数len位为i,第二个数len位为j,和的第len位为k每一位可以从后面一位转移过来,可以进位也可以不进位AFamousEquationTimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):500 Ac
u012797220
·
2014-10-19 21:00
The Monty Hall Problem
GNG1106 Lab 3The Monty Hall ProblemBackgroundThe Monty Hall Problem is a
famous
probability puzzle, based
guoyiqi
·
2014-10-19 12:00
em
The Monty Hall Problem
GNG1106 Lab 3The Monty Hall ProblemBackgroundThe Monty Hall Problem is a
famous
probability puzzle, based
·
2014-10-19 12:00
em
HDOJ 4248 A
Famous
Stone Collector DP
DP:dp[i][j]前i堆排出j长度的序列有多少种排法,dp[i][j]=dp[i-1][j](不用第i堆), dp[i][j]+=dp[i-1][j-k]*C[j][k](用第i堆的k个石头)AFamousStoneCollectorTimeLimit:30000/15000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)Tota
u012797220
·
2014-10-18 11:00
HDOJ 4252 A
Famous
City 单调栈
单调栈:维护一个单调栈AFamousCityTimeLimit:10000/3000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):1671 AcceptedSubmission(s):644ProblemDescriptionAfterMr.BarrivedinWarsaw,hewassh
u012797220
·
2014-10-17 23:00
HDOJ 4251 The
Famous
ICPC Team Again
划分树水题.....TheFamousICPCTeamAgainTimeLimit:30000/15000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):859 AcceptedSubmission(s):415ProblemDescriptionWhenMr.B,Mr.GandMr.Mwe
u012797220
·
2014-10-05 23:00
老板们到底在想什么?
如果我有幸成为比较
famous
的人,这篇文章就会被更多的人看到。——题记老板们到底都在想什么?我从来都不认为单纯的理想就足够运营一间公司,一间公司要生存下去,就必须得盈利。
ArthasLee
·
2014-09-23 00:00
字符串排序
y样例: 输入: A
Famous
Saying: Mu
qq981932962
·
2014-09-05 01:00
NYOJ--484 The
Famous
Clock
TheFamousClock时间限制:1000ms | 内存限制:65535KB难度:1描述Mr.B,Mr.GandMr.MarenowinWarsaw,Poland,forthe2012’sACM-ICPCWorldFinalsContest.They’vedecidedtotakea5hourstrainingeverydaybeforethecontest.Also,theyplantost
u013050857
·
2014-06-28 10:00
算法
C语言
ACM
NY25 A
Famous
Music Composer
搞了半天才读明白,原来这个题只是一个简单的替换而已……#include #include #include usingnamespacestd; intmain() { intj=1; chars[205]; while(gets(s)) { if(s[0]=='A'&&s[1]=='#'){ s[0]='B'; s[1]='b'; printf("Case%d
u011641865
·
2014-06-01 17:00
murmurhash2和djb
代码djb算法 /* the
famous
DJB Hash Function for strings */ unsigned int DJBHash(char *str) {
面码
·
2014-05-14 10:00
函数
hash
ubuntu kylin 14.04安装Node.js和
Famous
https://famo.us/install进行安装 1.sudo apt-get install git 2.npm install -g yo grunt-cli bower generator-
famous
·
2014-05-08 22:00
node.js
上一页
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
其他