牛客499819205号
牛客499819205号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客499819205号的博客
全部文章
/ 题解
(共4篇)
题解 | #路灯#贪心算法,不知道什么算法的都是贪心算法!先排序再比较
#include <iostream> #include <vector> #include <algorithm> #include <iomanip> using namespace std; int main() { ...
C++
贪心
数组
2021-10-15
0
419
题解 | #奖学金#贪心算法,优先选择耗时低的课程
#include <iostream> #include <vector> #include <algorithm> using namespace std; bool compare(const&nbs...
C++
贪心
数组
2021-10-15
0
503
题解 | #最长递增子序列#贪心算法+lower_bound(转自题解)
class Solution { public: /** * retrun the longest increasing ...
C++
数组
贪心
单调栈
2021-10-11
0
412
题解 | #连续子数组的最大和#前缀和的思路:最大前缀和减去之前的最小前缀和
class Solution { public: int FindGreatestSumOfSubArray(vector<int> array) { &...
C++
贪心
数组
2021-10-10
0
309