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
水题……
HDOJ/HDU 1256 画8(绞下思维~
水题
)
ProblemDescription谁画8画的好,画的快,今后就发的快,学业发达,事业发达,祝大家发,发,发.Input输入的第一行为一个整数N,表示后面有N组数据.每组数据中有一个字符和一个整数,字符表示画笔,整数(>=5)表示高度.Output画横线总是一个字符粗,竖线随着总高度每增长6而增加1个字符宽.当总高度从5增加到6时,其竖线宽度从1增长到2.下圈高度不小于上圈高度,但应尽量接近上圈高
qq_26525215
·
2016-05-28 15:00
java
ACM
Codeforces Round #354 (Div. 2)
比赛链接:http://codeforces.com/contest/676A.NicholasandPermutation分析:
水题
,找到1和n到两边距离的最大值即可。
Yukizzz
·
2016-05-27 22:00
动态规划
水题
1.二维数组最小和M*N维的二维数组,每个位置有一个非负值,每次只能从右或者从下走,求从(1,1)走到(M,N)的最小值简单dp,开始的时候设置边界为INF枚举:C(m+n-2,m)(其中有m步向下走)dp[i][j]=min(dp[i-1][j],dp[i][j-1])+dis[i][j];2.最大子数组和一个整数数组长N,求一个非空的连续子数组使得它的和最大枚举:开头结尾位置(i,j)一共N*
sentimental_dog
·
2016-05-26 23:00
Codeforces Round #354 (Div. 2) A (
水题
)
A.NicholasandPermutationtimelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputNicholashasanarray a thatcontains n distinct integersfrom 1 to n.Inotherwords,Nichola
liangzhaoyang1
·
2016-05-26 22:00
round
水题
codeforces
2
a
Div.
#354
Nicholas and Permutation
水题
A.NicholasandPermutation题目连接:http://www.codeforces.com/contest/676/problem/ADescriptionNicholashasanarrayathatcontainsndistinctintegersfrom1ton.Inotherwords,Nicholashasapermutationofsizen.Nicholaswant
qscqesze
·
2016-05-26 15:00
HDU 4496 并查集
点击打开链接题意:给了一个图,问你依次将边删除后,图还剩下多少个联通的块思路:就是问你有多少个块嘛,可以用并查集来判断是不是在一个块内,然后我们将顺序反过来判断一下就可以了,
水题
~~~#include
Dan__ge
·
2016-05-25 19:00
ACM
HDU
并查集
HDU 1863 并查集+Kruskal
点击打开链接题意:不解释了思路:也不解释了,并查集判段连通性,Kruskal求最小生成树,大
水题
(/□\)#include #include #include #include #include usingnamespacestd
Dan__ge
·
2016-05-25 19:00
ACM
HDU
并查集
kruskal
NEFU115 斐波那契的整除(数论
水题
)
NEFU115斐波那契的整除(数论
水题
)链接:http://acm.nefu.edu.cn/JudgeOnline/problemShow.php?
b735098742
·
2016-05-23 23:00
HDU 2549 壮志难酬 (
水题
,但有个小坑!)
壮志难酬TimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):10552 AcceptedSubmission(s):3512ProblemDescription话说MCA山上各路豪杰均出山抗敌,去年曾在江湖威名显赫的,江湖人称的甘露也不甘示弱,“天将降大任于
hurmishine
·
2016-05-23 22:00
壮志难酬
HDU2549
HDU 2767 强联通分量
点击打开链接题意:问加多少边后图会变成强联通分量为1的图思路:简单的强联通,缩点后找入度和出度就行了,
水题
#include#include#include#include#include#includeusingnamespacestd
Dan__ge
·
2016-05-23 21:26
数据结构
强联通分量
线段树
HDU 2767 强联通分量
点击打开链接题意:问加多少边后图会变成强联通分量为1的图思路:简单的强联通,缩点后找入度和出度就行了,
水题
#include#include#include#include#include#includeusingnamespacestd
Dan__ge
·
2016-05-23 21:26
数据结构
强联通分量
线段树
HDU 2767 强联通分量
点击打开链接题意:问加多少边后图会变成强联通分量为1的图思路:简单的强联通,缩点后找入度和出度就行了,
水题
#include #include #include #include #include #include
Dan__ge
·
2016-05-23 21:00
数据结构
ACM
PAT 1022 Digital Library MAP(STL)
水题
,当作是熟练MAP吧。
Danliwoo
·
2016-05-23 16:00
map
STL
BZOJ2599——[IOI2011]Race
0、题意:给一棵树,每条边有权.求一条路径,权值和等于K,且边的数量最小.1、分析:
水题
一道,一波树分治就好我们可以发现这个题的K是比较小的,才100w,那么我们可以树分治一下,在遍历每一棵子树的时候我们知道要统计两个不同子树之间的权值
qzh_1430586275
·
2016-05-23 08:00
bzoj
race
树分治
IOI2011
2599
HDU 2054 又见GCD(
水题
??)
又见GCDTimeLimit:1000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):15221 AcceptedSubmission(s):6397ProblemDescription有三个正整数a,b,c(0 usingnamespacestd; intGCD(intx,int
hurmishine
·
2016-05-21 23:00
HDU2054
又见GCD
BZOJ2229—— [Zjoi2011]最小割
0、题目大意:求两点之间的最小割,然后找出其中小于x的数量1、分析:最小割树
水题
,上个板子就好#include #include #include #include #include #include
qzh_1430586275
·
2016-05-21 16:00
最小割
bzoj
最小割树
2229
ZJOI2011
POJ1035(字符串)
分析:
水题
代码:#include #include #include #include #include usingnamespacestd; chardic[10005][17],ch[55][17]
LMFQYJ
·
2016-05-19 22:00
Towers
水题
A.Towers题目连接:http://www.codeforces.com/contest/37/problem/ADescriptionLittleVasyahasreceivedayoungbuilder’skit.Thekitconsistsofseveralwoodenbars,thelengthsofallofthemareknown.Thebarscanbeputoneontheto
qscqesze
·
2016-05-19 15:00
HDOJ/HDU 2561 第二小整数(
水题
~排序~)
ProblemDescription求n个整数中倒数第二小的数。每一个整数都独立看成一个数,比如,有三个数分别是1,1,3,那么,第二小的数就是1。Input输入包含多组测试数据。输入的第一行是一个整数C,表示有C测试数据;每组测试数据的第一行是一个整数n,表示本组测试数据有n个整数(20){ intn=sc.nextInt(); inta[]=newint[n]; for(inti=0;i
qq_26525215
·
2016-05-17 20:00
java
数据
ACM
HDOJ/HDU 2560 Buildings(嗯~
水题
)
ProblemDescriptionWedividetheHZNUCampusintoN*Mgrids.Asyoucanseefromthepicturebelow,thegreengridsrepresentthebuidings.GiventhesizeoftheHZNUCampus,andthecolorofeachgrid,youshouldcounthowmanygreengridsin
qq_26525215
·
2016-05-17 20:00
java
ACM
Codeforces Round #353 (Div. 2)题解
比赛传送门:http://codeforces.com/contest/675A:
水题
判断是否在等差数列里,一定要分类讨论公差正负,b和a的大小,不能直接模B:
水题
5个位置变量设为x1到x5,发现4个正方形里都有
Miracle_ma
·
2016-05-17 17:00
Restoring Painting
水题
B.RestoringPainting题目连接:http://www.codeforces.com/contest/675/problem/BDescriptionVasyaworksasawatchmaninthegallery.Unfortunately,oneofthemostexpensivepaintingswasstolenwhilehewasonduty.Hedoesn'twantt
qscqesze
·
2016-05-17 11:00
Infinite Sequence
水题
A.InfiniteSequence题目连接:http://www.codeforces.com/contest/675/problem/ADescriptionVasyalikeseverythinginfinite.Nowheisstudyingthepropertiesofasequences,suchthatitsfirstelementisequaltoa(s1 = a),andthed
qscqesze
·
2016-05-17 11:00
HDU 5680 zxa and set
水题
zxaandset题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=4681DescriptionzxahasasetA={a1,a2,⋯,an},whichhasnelementsandobviously(2n−1)non-emptysubsets.ForeachsubsetB={b1,b2,⋯,bm}(1≤m≤n)ofA,whichhasmeleme
qscqesze
·
2016-05-15 18:00
HDU1248 寒冰王座(完全背包)
题意:中文题不解释要点:就是个完全背包的
水题
变形,注意因为最后钱用不完,所以d数组一开始全赋值为0。
SeasonJoe
·
2016-05-15 00:00
CodeForces 672A Summer Camp
思路:
水题
#include usingnamespacestd; intmain() { strings=""; inti=1; while(s.size()<1000) { strings1="";
qq_21057881
·
2016-05-14 20:00
BZOJ 3091: 城市旅行
linkcuttree
水题
将树链看成序列,答案即为sigma(a[i]*i*(n-i+1))/C(n+1,2),分母显然不用维护,分子拆开来搞一搞就好了(维护信息的linkcuttree的标记必须即时生效
nlj1999
·
2016-05-14 15:00
0006:floyd求最短路径
水题
0006:floyd求最短路径查看提交统计提问总时间限制: 10000ms 内存限制: 1000kB描述给出一个有向图的结构,求所有顶点间的最短路径输入若干行整数,第一行有2个数,分别为顶点数v和弧数a,接下来有a行,每一行有3个数,分别是该条弧所关联的两个顶点编号和弧的权值输出若干行每行第一个为一个整数,为最短路径值,其余为若干个空格隔开的顶点构成的最短路径序列(用小写字母)若无最短路径,直接输
qq_34125999
·
2016-05-14 12:00
HDU 1017 A Mathematical Curiosity【
水题
】
AMathematicalCuriosityTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):36048 AcceptedSubmission(s):11498ProblemDescriptionGiventwointegersnandm,countthe
qq_24653023
·
2016-05-14 10:00
ACM
HDU
dijkstra求最短路径(
水题
)
0007:dijkstra求最短路径查看提交统计提问总时间限制: 10000ms 内存限制: 1000kB描述给出一个有向图的结构,求某个顶点到另一点的最短路径输入若干行整数,第一行有2个数,分别为顶点数v和弧数a,第二行为起点编号s和终点编号e,接下来有a行,每一行有3个数,分别是该条弧所关联的两个顶点编号和弧的权值输出第一行为一个整数,为最短路径值第二行为若干个空格隔开的顶点构成的最短路径序列
qq_34125999
·
2016-05-14 10:00
【PAT乙级真题及训练集】【1006】 换个格式输出整数 (15)
水题
,写来给要看的人看。
x123654p
·
2016-05-13 22:00
HDU 4395 D-mail
这就是多校赛的
水题
了。。。简单dp放大10000倍,然后左移200000(0.1*200*10000)就可以了。。
qq_32995183
·
2016-05-13 22:00
dp
HDU
多校
BC 81
1、Machine分析:3进制,
水题
#include #include #include #include usingnamespacestd; charstr[4]={'R','G','B'};
qq_32036091
·
2016-05-13 21:00
bc
81
bfs和dfs
做了一道神
水题
bfsNYOJ27#include #include #include usingnamespacestd; intmatrix[105][105]; intm,n; intcnt; voidbfs
sentimental_dog
·
2016-05-13 20:00
【
水题
】HDU1014Uniform Generator
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1014ProblemDescriptionComputersimulationsoftenrequirerandomnumbers.Onewaytogeneratepseudo-randomnumbersisviaafunctionoftheformseed(x+1)=[seed(x)+STEP]%MO
wlxsq
·
2016-05-13 20:00
HDU 1013 Digital Roots【
水题
】
DigitalRootsTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):67953 AcceptedSubmission(s):21239ProblemDescriptionThedigitalrootofapositiveintegerisfoundb
qq_24653023
·
2016-05-13 18:00
ACM
HDU
1258:Agri-Net Prime()
水题
1258:Agri-Net查看提交统计提示提问总时间限制: 1000ms 内存限制: 65536kB描述FarmerJohnhasbeenelectedmayorofhistown!Oneofhiscampaignpromiseswastobringinternetconnectivitytoallfarmsinthearea.Heneedsyourhelp,ofcourse. FarmerJoh
qq_34125999
·
2016-05-13 17:00
HDU 4500 小Q系列故事——屌丝的逆袭(
水题
)
题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=4500思路:简单模拟AC代码:#include #include #include #include #include #include #include #include #include #include #include constintinf=0x3f3f3f3f;//1061109567 ty
qq_25605637
·
2016-05-13 16:00
CodeForces 599A Patrick and Shopping
思路:
水题
#include usingnamespacestd; #defineLLlonglong intmain() { LLd1,d2,d3; cin>>d1>>d2>>d3; LLans=d1
qq_21057881
·
2016-05-13 14:00
水题
帮其他学校的写了两个大作业(c语言那种)第一个是个***管理系统大意就是公司工资管理系统,要计算一下汇率,没什么说的第二个是一个迷宫,难点在于随机生成迷宫那边,关键是深搜的过程是随机的就可以生成一条道路(这条道路都是可通行的),剩下的点大部分不可通行,当然也不能全不能让人走,否则这条道路就太明显了),想了个办法,如果是那条初始道路就直接铺路,否则很大概率是墙,小概率是道路。算法还可以继续优化,等有
fengsigaoju
·
2016-05-13 01:00
zoj
水题
分类(自己练习)
简单题1001-__-bA+B。1110DickandJane胡乱枚举收缩一下情况就可以了。(这题脑筋还是要转一个弯的,不然做不出)1115a[i+1]=a[i]的全部数位上的加起来,直到剩下一个,直接模拟。1414太弱太弱,按照模4分类讨论一下即可。1713简单的字符串截取和字符计数。1716简单的二维数组区间求和,作累加,然后容斥一下;预处理O(W*H),查询O(1)顶多(W-w)*(H-h)
abc13068938939
·
2016-05-12 20:00
ZOJ
HDU1864巴什博奕(
水题
)
题解:与此题相同[(http://blog.csdn.net/gaokao_sijiao/article/details/51377382)]代码如下:#includeintmain(){intc,n,m;scanf("%d",&c);while(c--){scanf("%d%d",&n,&m);if(n%(m+1)==0)printf("second\n");elseprintf("first\
风尘tel小城
·
2016-05-12 20:40
HDU
point
2016.5.12:我想说,好题真的有很多,难题也是,而我却只会做
水题
,没有攻克难题的能力和勇气,这是广大蒟蒻的共同特征。
qq_20669971
·
2016-05-12 20:00
切百度之星
水题
大搬家 Accepts:527 Submissions:2062 TimeLimit:2000/1000MS(Java/Others) MemoryLimit:65536/65536K(Java/Others)ProblemDescription近期B厂组织了一次大搬家,所有人都要按照指示换到指定的座位上。指示的内容是坐在位置ii上的人要搬到位置jj上。现在B厂有NN个人,一对一到NN个位置
DoJintian
·
2016-05-12 18:00
ACM
水题
小技巧
DigitalRoots题一:题目链接:http://acm.hdu.edu.cn/diy/contest_showproblem.php?pid=1009&cid=29312题意:将一个多位数的各个位上的数字求和,直到这个和是一个个位数。ProblemDescriptionThedigitalrootofapositiveintegerisfoundbysummingthedigitsofthe
a716121
·
2016-05-12 17:00
NOJ——聊天止于呵呵(string流重定向+map,
水题
)
[1645]聊天止于呵呵时间限制:5000ms内存限制:65535K问题描述(现代版)俗话说:流言止于智者,聊天止于呵呵。输入一段聊天记录,你的任务是数一数有多少段对话“止于呵呵”,即对话的最后一句话包含单词 hehe 或者它的变形。具体来说,我们首先提取出对话的最后一句话,把所有非字母的字符替换成空格,把所有字符替换成小写,然后导出一个单词列表(由空格隔开),只要列表中的任何一个单词是 hehe
a88770202
·
2016-05-12 16:00
Different is Good
水题
B.DifferentisGood题目连接:http://www.codeforces.com/contest/672/problem/BDescriptionAwisemantoldKerem"Differentisgood"once,soKeremwantsallthingsinhislifetobedifferent.Keremrecentlygotastringsconsistingofl
qscqesze
·
2016-05-12 16:00
Summer Camp
水题
A.SummerCamp题目连接:http://www.codeforces.com/contest/672/problem/ADescriptionEveryyear,hundredsofpeoplecometosummercamps,theylearnnewalgorithmsandsolvehardproblems.Thisisyourfirstyearatsummercamp,andyou
qscqesze
·
2016-05-12 16:00
HDU 2564 词组缩写
pid=2564
水题
#include #include #include usingnamespacestd; intmain() { charstr[150]; intT; scanf("%d%*c"
azhuge233
·
2016-05-12 11:00
字符串
水题
HDU2564
[BZOJ2819]Nim(树链剖分)
题目描述传送门题解为了学手写栈刷了一道
水题
。
Clove_unique
·
2016-05-12 08:43
题解
树链剖分
上一页
58
59
60
61
62
63
64
65
下一页
按字母分类:
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
其他