破竹GYH
破竹GYH
全部文章
题解
归档
标签
去牛客网
登录
/
注册
破竹GYH的博客
全部文章
/ 题解
(共3篇)
题解 | #[NOIP2001]装箱问题#
#include<bits/stdc++.h> using namespace std; int main() { int n; int v; cin >> v; cin >> n;//dp[v]的意思为:容量为v时,能装的最大体积...
C++
动态规划
贪心
2022-05-09
3
448
题解 | #分糖果问题#
``` js ```class Solution { public: /** * pick candy * @param arr int整型vector the array * @return int整型 */ int candy(vector...
C++
贪心
2022-04-05
1
352
题解 | #买卖股票的最好时机(二)#
```class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 计算最大收益 * @param prices int整型vector 股票每一天的价格 * @return...
C++
贪心
2022-04-04
0
263