上一页 1 ··· 4 5 6 7 8 9 下一页
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1014 1 //hdu1014 0ms 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 8 int a[1... 阅读全文
posted @ 2015-11-19 21:48 pter 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1019思路:头两个数先求,再用所求的数与后面的一个数求,依次类推 1 #include 2 #include 3 #include 4 #include 5 #include 6 #in... 阅读全文
posted @ 2015-11-19 21:47 pter 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4006思路:利用优先队列的性质,将数据存入后会自动对数据进行排序 1 #include 2 #include 3 #include 4 #include 5 #include 6 #in... 阅读全文
posted @ 2015-11-04 17:38 pter 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1171思路:用一个数组将数据存起来,可以将其转化为01背包 1 #include 2 #include 3 #include 4 #include 5 #include 6 #inclu... 阅读全文
posted @ 2015-10-30 13:16 pter 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1290思路:n条直线最多能将一个平面分成几个区域其递推公式即为:f(n)=f(n-1)+n;递推一下,就得到f(n)=1/2*(n*n+n)+1;n个平面最多能将一个空间分成几个区域递推公式即为:g(n)... 阅读全文
posted @ 2015-10-28 11:34 pter 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1249part=3*s*(s-1)+2 1 #include 2 #include 3 main() 4 { 5 int n,s,i,p,m; 6 while(~scanf("%d",&n... 阅读全文
posted @ 2015-10-28 11:29 pter 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1279 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #inc... 阅读全文
posted @ 2015-10-28 11:21 pter 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2159思路:二维完全背包,状态转移方程为: f[j][l]=max(f[j][l],f[j-b[i]][l-1]+w[i]); a[i]表示杀死第i个怪所得的经验值,b[i]表示消耗的忍耐度 1 #inc... 阅读全文
posted @ 2015-10-27 21:51 pter 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2602思路:典型的01背包 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include... 阅读全文
posted @ 2015-10-27 21:48 pter 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://www.bnuoj.com/v3/problem_show.php?pid=24252这是四川2012年省赛的一道题,背景:海盗分宝藏。大概题意:给你N种价值的物品,物品有两个属性,一个是数量,一个是价值(价值是以2的ai次方表示的)。为了公平起见,求出宝藏分配的最小差(二进... 阅读全文
posted @ 2015-10-21 16:58 pter 阅读(132) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 下一页