码迷,mamicode.com
首页 >  
搜索关键字:hdu 4267 a simple pr    ( 40077个结果
hdu_1282 回文数猜想
(最近水题刷的比较多,不过还是有些收获,所以还是做个记录比较好) http://acm.hdu.edu.cn/showproblem.php?pid=1282 分析:        题目理解起来还是简单的,基本上有两种思路:1) 将int转为string来实现; 2)直接用int做(回文串判断,相加)       第二中思路比较直接,将一个数倒置得到新的数,然后判断是否是回文数...
分类:其他好文   时间:2014-05-05 13:26:07    阅读次数:276
hdu 1163 Eddy's digital Roots(九余数定理)
hdu 1163 Eddy's digital Roots 九余数定理...
分类:其他好文   时间:2014-05-05 13:03:16    阅读次数:232
[ACM] hdu 1029 Ignatius and the Princess IV (动归或hash)
Ignatius and the Princess IV Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 65536/32767K (Java/Other) Total Submission(s) : 7   Accepted Submission(s) : 3 Font: Times New Roman | Verdana | ...
分类:其他好文   时间:2014-05-05 13:01:52    阅读次数:325
Poj-3922 A simple stone game(博弈,k倍动态减法)
Poj-3922 A simple stone game 博弈,k倍动态减法详解...
分类:其他好文   时间:2014-05-04 00:21:34    阅读次数:296
HDU 3400 Line belt 三分
点击打开链接...
分类:其他好文   时间:2014-05-04 00:18:08    阅读次数:275
[ACM] hdu 1087 Super Jumping! Jumping! Jumping! (动态规划)
Super Jumping! Jumping! Jumping! Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 65536/32768K (Java/Other) Total Submission(s) : 6   Accepted Submission(s) : 5 Font: Times New Roman | Verdan...
分类:其他好文   时间:2014-05-03 16:47:07    阅读次数:262
hdu_1408 盐水的故事
(为什么觉得越来越不行了,唉~果然脑子不够使啊~) http://acm.hdu.edu.cn/showproblem.php?pid=1408 分析:         简单的模拟,不过学习了使用了ceil(double x) 函数 (math.h)          double ceil(double  x)    (天花板函数)          返回大于或者等...
分类:其他好文   时间:2014-05-03 16:20:05    阅读次数:259
hdu_1228 A + B
http://acm.hdu.edu.cn/showproblem.php?pid=1228 分析:         我只是想练习一下map的用法,不然又忘了。。。 代码: //hdu 1228 #include #include #include #include #include using namespace std; map d; void init()...
分类:其他好文   时间:2014-05-03 15:40:58    阅读次数:232
hdu 1165 Eddy's research II(数学题,递推)
hdu 1165 Eddy's research II (数学题,递推)...
分类:其他好文   时间:2014-05-03 15:34:41    阅读次数:215
HDU 2894 欧拉回路
#include #include #include #include #include using namespace std; #define N 20020 struct node{ int from, to, dou, nex; }edge[N]; int head[N], edgenum; void add(int u, int v,int dou){ node E={u,v,dou...
分类:其他好文   时间:2014-05-03 15:25:32    阅读次数:340
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!