P1013-题解(C语言代码)--------动态规划联想01背包 摘要: 其实这道题想了一下,如果用dfs时间会超限,然后想起了01背包问题,同样的,有一道题是叫采药,它也是用了01背包哪里,然而这道题的思路和这种题是一样的,也是用动态规划 动态规划的主要…… 题解列表 2019年08月31日 0 点赞 0 评论 2118 浏览 评分:9.9
P1013 (C++代码)简单的01背包的变形(循环 + 动态规划) 摘要:解题思路:注意事项:参考代码:#include<cstdio> #include<iostream> #include<cstring> using namespace std; int rm…… 题解列表 2019年03月23日 1 点赞 0 评论 735 浏览 评分:9.9
1280: 找啊找啊找GF 摘要:```cpp #include using namespace std; int rmb[1001],rp[1001],t[1001],f[101][101],mint[101][101]; …… 题解列表 2023年04月04日 0 点赞 0 评论 133 浏览 评分:9.9
P1013 (C++代码) 摘要:解题思路:注意事项:参考代码:双重状态数组,我无敌了。#include<iostream> #include<cstdio> #include<cstring> #define maxn 202…… 题解列表 2018年01月07日 2 点赞 0 评论 932 浏览 评分:9.9
1280: 找啊找啊找GF 摘要:解题思路 01背包的思路,先找到可以泡最多妹子的数量,然后再在最多妹子数量中找到时间最少得注意事项:参考代码:#include<bits/stdc++.h> using namespace std;…… 题解列表 2023年04月05日 0 点赞 0 评论 138 浏览 评分:0.0
找啊找啊找GF 题目描述有点东西 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义全局变量 int n, m, r; // n表示物品MM数量,m…… 题解列表 2024年12月14日 0 点赞 0 评论 71 浏览 评分:0.0