摘要:
本题是一个经典的动态规划题。 直接利用记忆化搜索:见图解 Ac code : 阅读全文
摘要:
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2124 Ac code : 阅读全文
摘要:
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2570 Ac code: 阅读全文
摘要:
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1800 Ac code: 阅读全文
摘要:
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1050 AC code: 阅读全文
摘要:
解题思路: 1. 两种情况,0x1:井深度小于一次跳的高度.0x2:井深度大于一次跳的高度 2.如果 属于 0x1 则一次跳出 3.否则 本次解题中直接枚举跳的次数 一直循环,直到 【每次跳的真实高度(一次高度减去滑下的高度)】*【次数(循环)】+【最后一次(一次的高度)】大于等于井深度 得到次数 阅读全文
摘要:
#include #include double f(double x) { return 8*x*x*x*x+7*x*x*x+2*x*x+3*x+6; } int main(void) { int t; double y,x1,x2,x3,y1,y2,y3; scanf("%d",&t); while(t--) { scanf... 阅读全文
摘要:
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2187 题目简问: 解题思路: 已知给出了 总钱数 和 一共的种类 1. 对给出的大米,按照价格进行升序,即让最便宜的大米排在最上面 2. 如果当前的 大米单价*数量>总钱数,则 一共能买 sum+= 总 阅读全文