采药 (C++代码) 摘要:解题思路:贪心算法不适合这题,使用动态规划(递归的一种类似形式)方法一: #include<iostream> # include<cstring> # define max(a,b) ( a …… 题解列表 2017年07月28日 8 点赞 0 评论 1414 浏览 评分:5.2
采药 (C语言代码) 摘要:解题思路:动态规划,和分苹果一样的,这里的草药先用苹果代替了,偷下懒。注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { …… 题解列表 2019年02月16日 1 点赞 0 评论 380 浏览 评分:2.0
1100采药(dp记忆化搜索) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>#include<cstring>using namespace std;const int M…… 题解列表 2024年06月01日 0 点赞 0 评论 67 浏览 评分:0.0
背包型动态规划 摘要:解题思路:注意事项:参考代码: public static void main(String[] args) { Scanner scanner=new Scanner(Sys…… 题解列表 2021年03月26日 0 点赞 0 评论 165 浏览 评分:0.0
采药-题解(C语言代码) 摘要:```cpp #include using namespace std; int main() { int i,j,t; int T,M;//T为可采药时间M为药材总数 int …… 题解列表 2019年11月28日 0 点赞 0 评论 265 浏览 评分:0.0
编写题解 1100: 采药 摘要:解题思路:注意事项:参考代码:T, M = map(int, input().split())grass_time = []grass_value = []for _ in range(M): …… 题解列表 2024年02月18日 0 点赞 0 评论 115 浏览 评分:0.0
采药 (C语言代码) 摘要:解题思路:使用结构体数组运算,创建一个价值除以时间的百分比量q,用这个q进行比较,排序,最后提取前几个时间加起来小于time就可以。注意事项:并不完善,成功率91%;因为有一些用double算不完全,…… 题解列表 2019年02月27日 0 点赞 0 评论 324 浏览 评分:0.0
采药 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <cstdlib>#include<iostream>using namespace std;int s[1001];int main(int argc…… 题解列表 2018年07月04日 0 点赞 0 评论 382 浏览 评分:0.0
采药 (C++代码) 摘要:解题思路: 逐渐求最大值(模板题,-多阶段决策问题)注意事项:遍历是从最大值数组中的1到你拥有的时间t参考代码:#include <cstdio>#include <algorithm>using n…… 题解列表 2017年07月10日 4 点赞 0 评论 1214 浏览 评分:0.0
采药 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio> #include <cstring> #include <string> #include <cmath> #include …… 题解列表 2018年11月07日 0 点赞 0 评论 430 浏览 评分:0.0