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
水题乱搞
Codeforces Round #280 (Div. 2) A B C
http://codeforces.com/contest/492A
水题
A.VanyaandCubestimelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputVanyagotncubes.Hedecidedtobuildapyramidfromthem.Vanyawants
mfcheer
·
2020-08-25 04:50
【codeforces】Codeforces Round #280 (Div. 2)
水题
专场
传送门:【codeforces】CodeforcesRound#280(Div.2)492A.VanyaandCubes找到最大的i使得1+2+3+……+i小于等于n,并且输出i。#include#include#includeusingnamespacestd;typedeflonglongLL;#definerep(i,a,b)for(inti=(a);i=(b);--i)#defineclr
poursoul
·
2020-08-25 04:11
题解
杭电acm
水题
2053
刷题啊啊啊啊啊!!!!!>_intmain(){intn,count,i;while(scanf("%d",&n)!=EOF){count=0;for(i=1;i<=n;i++){if(n%i==0)count++;}//printf("coount=%d\n",count);if(count%2==0)printf("0\n");elseprintf("1\n");}return0;}最后成功A
宝宝很聪明
·
2020-08-25 04:33
ACM
水题
ProblemDescriptionTheremustbemanyA+BproblemsinourHDOJ,nowanewoneiscoming.Giveyoutwohexadecimalintegers,yourtaskistocalculatethesumofthem,andprintitinhexadecimaltoo.Easy?ACit!InputTheinputcontainssever
smallmarks
·
2020-08-25 04:17
初学ACM
P5743 【深基7.习8】猴子吃桃
AC代码:/*
水题
倒着推算,当天的加1再乘以2,就是前一天的数量*/#includeintmain(){intn;scanf("%d",&n);intsum=1,i;for(i=1;i<n;i++
Guan_qiqi
·
2020-08-25 04:55
洛谷
CodeForces - 492A Vanya and Cubes【
水题
】
VanyaandCubestimelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputVanyagotncubes.Hedecidedtobuildapyramidfromthem.Vanyawantstobuildthepyramidasfollows:thetoplevel
黑糖22
·
2020-08-25 04:20
最短路入门合辑(附模板代码及
水题
)
最短路大致题意:求一个点到另一个点的最短距离解法:Floyd、Dijkstra、Bellman-ford、Spfa关键名词:1、源:可以理解为图的起点,很好理解,就像是一条流水线的源头。2、有向和无向有向就是这个图的方向是固定的,只能从这边到那边,那边过不来,无向就是方向不固定。3、权值、负权值、负圈:权值:边的距离,负权值:边权是负的,负圈:图中的一个环,边权全部为负边权。4、重边相同的边,就比
cornivores
·
2020-08-25 04:12
最短路
差分约束
入门
水题
模板
Boredom(经典dp
水题
)
A.Boredomtimelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputAlexdoesn'tlikeboredom.That'swhywheneverhegetsbored,hecomesupwithgames.Onelongwintereveninghecameupw
饮酒在风里
·
2020-08-25 04:08
dp
Getting an A(
水题
)
B.GettinganAtimelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputTranslator'snote:inRussia'smostwidespreadgradingsystem,therearefourgrades:5,4,3,2,thehigherthebet
JIA-YAO
·
2020-08-25 04:19
水题
洛谷 1118 [USACO] 数字三角形(不是DP的那道) dfs+
乱搞
题目:https://www.luogu.org/problem/show?pid=1118没想到这么简单,还以为是爆搜;原来有规律……;思路:逆推;杨辉三角:对应每层每个数被计算的次数;明确一件事:答案在第n层,因为题目说初始是n层的排列……;总结:1.输入少一般不是纯粹的爆搜,有规律;2.不要看到题就想搜索;3.注意找规律……与fib数列,杨辉三角等基本的东西靠靠;20分代码:爆搜+显而易见的
Loi_cgold
·
2020-08-25 04:36
搜索
题
step1_入门_ACM
水题
a/b + c/d 【最大公约数】
牢记于心代码intfun(inta,intb){if(b==0)returna;elsereturnfun(b,a%b);}//迭代函数用个题强化一下http://acm.hdu.edu.cn/showproblem.php?pid=2503代码#includeusingnamespacestd;intgcd(inta,intb){while(a!=b){if(a>b)a-=b;elseb-=a;
_魔鬼脚印
·
2020-08-25 04:05
2018年为准备CCF
CSP的第二遍刷题
【CodeForces】【
水题
】【暴力】935 A Fafa and his Company
【题目】http://codeforces.com/problemset/problem/935/A【题意】有n个人,现在要选几个leader,让其他人成为这个leader的下属,每个leader都要有相同数量的下属,每个人都要成为leader或者下属,下属的数量不能是0,问有多少种分配方案?【思路】分别让1,2,3,……n-1个人成为leader,判断剩下的人数能否被leader的个数整除即可。
swqeaaa
·
2020-08-25 03:39
暴力
水题
CodeForces
A1020 Tree Traversals 【二叉树】【
水题
】
题目链接题目分析给出中序、后序对队列,输出层序队列解题思路用后序队列递归切分中序队列AC程序(C++)/**************************//@Author:3stone//@ACM:PAT-A1020//@Time:18/5/8//@IDE:Dev-C++//@Key:It`snousecryingoverspiltmilk.**************************
3stone_
·
2020-08-25 03:24
PAT
ACM-水题
ACM
水题
堆(一)F-三角形
给定三条边,请你判断一下能不能组成一个三角形。Input输入数据第一行包含一个数M,接下有M行,每行一个实例,包含三个正数A,B,C。其中A,B,Cusingnamespacestd;intjudge(doublea,doubleb,doublec);//第一遍未定义intmain(){inti,j,n;doublea,b,c;//数据类型出错intflag[1000];cin>>n;for(i=
薛定谔的死亡猫丶
·
2020-08-25 03:28
2012年北京师范大学新生程序设计竞赛网络赛
然后复习unix无聊了就拿这场做了
水题
。。。两题不会做悲剧。。。。。。
屎宝宝
·
2020-08-25 03:44
BUAA
Training
2013
2015 ACM-ICPC World Finals - Marrakech 题解(待续)
ps:代码不在我手上……先空着吧AmalgamatedArtichokessb题Catering带上下界的网络流.2到n+1的工作点,均只能经过1个工程队CuttingCheese几何题,二分
乱搞
注意谜面有毒
nike0good
·
2020-08-25 03:06
比赛题解
Codeforces 492A Vanya and Cubes【
水题
】
A.VanyaandCubestimelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputVanyagotncubes.Hedecidedtobuildapyramidfromthem.Vanyawantstobuildthepyramidasfollows:thetoplev
mengxiang000000
·
2020-08-25 03:20
水题
Mac mini+Parallels 8.0+FreeBSD-8.4-RELEASE-amd64-disc1 全纪录
首先当然是选择虚拟机,公家机器我可不敢
乱搞
O_o。dawn110110默默
rightpeter
·
2020-08-25 03:43
杂七杂八
SRM509div2B
说实话,TC的div2题一般都是
水题
,就看你A的快不快了,要是什么时候个也能75分钟A3题,也就还差不多了。。。。。
iwillsucceed555
·
2020-08-25 03:49
acm—数学题
SRM509div2A
TC大
水题
,就是发现自己写的不够快,不然就可以把后面一道数学题A掉了。。。。。。。。。。。。。。。。。。。。。
iwillsucceed555
·
2020-08-25 03:49
div
class
Codeforces Round #465 (Div. 2)-D-Fafa and Ancient Alphabet(概率)
题解:我们直接遍历即可,对于当前分四种情况讨论,具体见代码(
水题
一道)#include#include#include#includeusingnamespac
信仰..
·
2020-08-25 03:14
数论
JSK-美好的邂逅-最短路Floyd
题目在这Floyd的
水题
AC代码#includeusingnamespacestd;constintinf=0x3f3f3f3f;constintmaxn=105;constintmaxm=205;intamap
giggle666
·
2020-08-25 03:32
acm
最短路
Floyd
P1765 手机
某种程度上算是
水题
题目描述一般的手机的键盘是这样的:要按出英文字母就必须要按数字键多下。例如要按出x就得按9两下,第一下会出w,而第二下会把w变成x。0键按一下会出一个空格。
bupt_sanqing
·
2020-08-25 02:04
C++
洛谷
摸鱼
P1597 语句解析
也算是
水题
吧。。。
bupt_sanqing
·
2020-08-25 02:03
C++
洛谷
摸鱼
【CF679D】Bear and Chase 最短路+
乱搞
【CF679D】BearandChase题意:近日,鼠国的头号通缉犯,神出鬼没的怪盗——Joker正于摩登市出没!对于名侦探Jack来说,这正是将其捉拿归案的大号时机。形式化地,摩登市可以看成一张$n$个点,$m$条边的简单无向连通图。Jack有一个神奇的探测器:MC(MouseChaser)。当Jack在某个城市使用MC时,MC会显示Joker所在城市与Jack所在城市之间的距离(即最短路所经过
aodanchui1057
·
2020-08-25 02:05
VJ
水题
堆:hdu 2045 不容易系列之(3)―― LELE的RPG难题
好吧,这又是VJ
水题
堆里的一道题。纠结了好长时间,终于把这道题磕过了,用到了很简单的深搜和记忆化搜索。
Wildcatastrophe
·
2020-08-25 02:58
知识点
搜索
教官的游戏题解
(该打120了)样例输入7样例输出1想法想一会就会发现这题是
水题
画上分隔线给读者思考1分钟当n%5==1或者n%5==4的时候平局当n%5
El_Shaarawy_S
·
2020-08-25 02:26
博弈
题解
Vanya and Cubes
水题
A.VanyaandCubestimelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputVanyagotncubes.Hedecidedtobuildapyramidfromthem.Vanyawantstobuildthepyramidasfollows:thetoplev
weixin_34174132
·
2020-08-25 02:49
CodeForces Round #288 Div.2
A.PashaandPixels(
水题
暴力)题意:有一个n×m的矩阵,最开始所有的格子都是白色的。一个人按照某种顺序将格子涂成黑的,如果某个格子已经是黑的则忽略。
weixin_30678821
·
2020-08-25 02:43
Leetcode -42.接雨水
示例:输入:[0,1,0,2,1,0,1,3,2,1,2,1]输出:6思路分析这好像是一道
水题
,放在Leetcode中属于难
德林恩宝
·
2020-08-25 02:46
#
exercise
洛谷题单:【入门4】数组
(1)P1428小鱼比可爱第一题果然一如既往的
水题
,两个循环。外层循环表示那只鱼正在往左看,内层循环表示被看的鱼。
掌握核心科技
·
2020-08-25 02:14
洛谷题单java解析
YCU月赛_2 题解
比赛入口2019就要过去啦~我们精心为大家准备了一场
水题
赛~~这题真的是签到题!!!做法:表面上看起来是斐波那契,但是一看到数据范围,相信大家都会想到某菜鸡说过的打表找规律。
cornivores
·
2020-08-25 02:13
洛谷 P2347 砝码称重 题解
一道
水题
。。。实际上是一道多重背包,主要思路是将多重背包中的每一个物品拆出来,于是就变成01背包模板。这里定义状态为f[i]f[i]f[i]表示iii的体积是否出现过。
live_now
·
2020-08-25 01:40
洛谷题解
动态规划专题讲解
Fafa and his Company
水题
A.FafaandhisCompanytimelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputFafaownsacompanythatworksonhugeprojects.TherearenemployeesinFafa'scompany.Wheneverthecompa
Frost_Bite
·
2020-08-25 01:04
Consecutive Ones
不能轻视
水题
!这题要考虑清楚边界条件。也就是i+1==nums.length的情况。但是大概算法还是老套路。一个cur_interval,一个max_interval.
98Future
·
2020-08-25 01:54
杭电(hdu)2070 Fibbonacci Number
水题
FibbonacciNumberTimeLimit:1000/1000MS(Java/Others)MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):17675AcceptedSubmission(s):8422ProblemDescriptionYourobjectiveforthisquestionistodevelopaprogr
IT142546355
·
2020-08-25 00:44
杭电ACM
hdu1686 KMP
水题
题意是给出文本串和模式串玩模式串在文本串中出现多少次把KMP稍稍改动下就ok了#include#include#includeusingnamespacestd;charstr1[10010],str[1000100];intnext[10010];intdeal(intlen){next[0]=-1;intj=0;intk=-1;while(j
AC枫
·
2020-08-25 00:07
KMP
hdu1584 深搜
水题
牌移动的步数为牌所在位置差的绝对值这道题用到深搜每次出差跑牌面为1-9的牌如果没移动过则尝试移动如果能移动就深搜下去注意回溯#include#include#includeusingnamespacestd;intmark[15],num[15],Min;intabs(inta){returna>0?a:-a;}intdfs(intsum,intcoun){inti,j;if(sum>Min)re
AC枫
·
2020-08-25 00:07
深搜
hdu 1880 二分+快排
水题
题意是这样的给你很多对字符串(#include#include#includeusingnamespacestd;structnode{charstr1[82],str2[82];//****这里刚好再大就爆了*********}mark[200001];intcmp(nodea,nodeb){if(strcmp(a.str1,b.str1)0)b=mid;else{flash=1;break;}
AC枫
·
2020-08-25 00:07
二分
(java题目第3讲)ACM(http://blog.csdn.net/kuhuaishuxia/article/details/52254209)
http://blog.csdn.net/kuhuaishuxia/article/details/52254209一.ACM入门二.
水题
hdu
水题
分类之耀哥版poj题目分类小媛在努力原创《算法竞赛入门经典
weiyastory
·
2020-08-25 00:17
java题目
Gym - 102501B
水题
题意给你n个字符串,要你求其中有没有一个字符串重复的个数严格大于n/2思路:只要用map将字符串映射出来就好了#include#defineIOSios::sync_with_stdio(false
小镇秋色
·
2020-08-24 23:10
HDU题目分类
1001整数求和
水题
1002C语言实验题——两个数比较
水题
10031、2、3、4、5…简单题1004渊子赛马排序+贪心的方法归并1005HeroInMaze广度搜索1006Redraiment猜想数论:
weixin_30780649
·
2020-08-24 23:14
HDU 4006 The kth great number (基本算法-
水题
)
ThekthgreatnumberProblemDescriptionXiaoMingandXiaoBaoareplayingasimpleNumbersgame.InaroundXiaoMingcanchoosetowritedownanumber,oraskXiaoBaowhatthekthgreatnumberis.BecausethenumberwrittenbyXiaoMingistoo
weixin_30740581
·
2020-08-24 23:43
bnuoj 29378,
乱搞
C.AdidasvsAdivonTimeLimit:1000msCaseTimeLimit:1000msMemoryLimit:65536KB64-bitintegerIOformat:%lldJavaclassname:MainSubmitStatusPID:29378FontSize:“我们坐在高高的土堆上面,听妈妈讲阿迪王的事情。我出生在一个不太普通的家庭,妈妈会预知术,在我小的时候,妈妈就
weixin_30527423
·
2020-08-24 23:02
Pasha and Stick
水题
A.PashaandStickPashahasawoodenstickofsomepositiveintegerlengthn.Hewantstoperformexactlythreecutstogetfourpartsofthestick.Eachpartmusthavesomepositiveintegerlengthandthesumoftheselengthswillobviouslybe
weixin_30256901
·
2020-08-24 23:49
poj 3468(线段树)
题解:区间修改
水题
。
路小白_zZ
·
2020-08-24 23:11
ACM-线段树
hdu 1576 A/B(数学:简单
水题
)
求(a/b)%9973,给出n,b的值,其中n=a%9937,求解很简单的一道题,可以知道结果必然在0到9936范围内设解为x,且a=9973*k+n则可得到等式9973*k+n==bx(gcd(9973,b)==1)两边同时模9973即可得到n%9973==(b%9973)*(x%9973)%9973暴力枚举即可代码如下:#includeintmain(void){intT,n,b,i;scan
殷华
·
2020-08-24 23:19
数学/数论
POJ1961_Peroid_KMP_求最多的子串重复次数
/*吐槽君又来吐槽了,额==这就是我两天来学习KMP的成果,水了一道
水题
,还是照着模版,看着题解写的=i=唯一的成就就是我植物大战僵尸的水平又更上一层楼,对自己无语了,暑假集训俨然要过半了,自己期待的蜕变却越来越远
成诚tbf
·
2020-08-24 23:12
KMP
ACM博弈学习小结
一、心得体会1.ACM博弈题,不会的时候觉得难于上青天,会的时候觉得没有比博弈更水的题了;博弈题看到的第一眼觉得是难题,代码敲完顿觉
水题
。你可能花半个小时去找规律,然后仅花2分钟敲代码。
Must_so
·
2020-08-24 23:51
ACM题解与算法
ACM(算法)
AOAPC I: Beginning Algorithm Contests 题解
BeginningAlgorithmContests(RujiaLiu)-VirtualJudgeVolume0.GettingStartedUVA10055HashmattheBraveWarrior【
水题
海岛Blog
·
2020-08-24 23:47
ICPC题解
上一页
16
17
18
19
20
21
22
23
下一页
按字母分类:
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
其他