1 Star 0 Fork 0

丁旭升/cpp代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
23.8.9.txt 706 Bytes
一键复制 编辑 原始数据 按行查看 历史
丁旭升 提交于 2023-08-09 13:49 . 乘积为正数的最长子数组长度
https://leetcode.cn/problems/maximum-length-of-subarray-with-positive-product/submissions/
class Solution {
public:
int getMaxLen(vector<int>& nums) {
int n =nums.size();
vector<int> f(n+1, 0);
auto g = f;
// dp
int ret = 0;
for(int i=1; i<=n; ++i)
{
int x = f[i-1] + 1, y = g[i-1]==0 ? 0 : g[i-1] + 1;
if(nums[i - 1] > 0)
{
f[i] = x;
g[i] = y;
}
else if(nums[i - 1] < 0)
{
f[i] = y;
g[i] = x;
}
ret = max(ret, f[i]);
}
return ret;
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ding-xushengyun/code.git
[email protected]:ding-xushengyun/code.git
ding-xushengyun
code
cpp代码
master

搜索帮助