码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • 1413.Minimum Value to Get Positive Step by Step Sum


    CONTENTS

    • The description of the problem
    • The intuition for this
    • The codes for this
    • The results

    The description of the problem

    Given an array of integers nums, you start with an initial positive value startValue.
    In each iteration, you calculate the step by step sum of startValue plus elements in nums from left to right.
    Return the minimum positive value of startValue such that the step by step sum is never less than 1.

    example:

    Input: nums = [-3, 2, -3, 4, 2]
    Output: 5
    Explanation: if you choose startValue = 4, in the third iteration your step by step sum is less than 1.
    
    • 1
    • 2
    • 3
    startValue = 4startValue = 5nums
    ( 4 + ( − 3 ) ) = 1 (4+(-3)) = 1 (4+(−3))=1 ( 5 + ( − 3 ) ) = 2 (5+(-3)) = 2 (5+(−3))=2-3
    ( 1 + 2 ) = 3 (1+2) = 3 (1+2)=3 ( 2 + 2 ) = 4 (2+2) = 4 (2+2)=42
    ( 3 − 3 ) = 0 (3-3)=0 (3−3)=0 ( 4 − 3 ) = 1 (4-3)=1 (4−3)=1-3
    ( 0 − 4 ) = 4 (0-4)=4 (0−4)=4 ( 1 + 4 ) = 5 (1+4)= 5 (1+4)=54
    ( 4 + 2 ) = 6 (4+2)=6 (4+2)=6 ( 5 + 2 ) = 7 (5+2)=7 (5+2)=72

    The intuition for this

    1. suppose the tempory summarization is sum
    2. we get the iterative formula: s t a r t V a l u e − s u m ≥ 1 startValue - sum \geq 1 startValue−sum≥1
    3. therefore we just find the greatest value in sums composed by 1 − t e m p S u m 1- tempSum 1−tempSum

    The codes for this

    #include 
    #include 
    using namespace std;
    class Solution {
    public:
        int minStartValue(vector<int>& nums) {
            int res;
            vector<int> sums;
            for (int i = 0; i < nums.size(); i++) {
                int sum = 0;
                for (int j = i; j>=0; j--) {
                    sum += nums[j];
                }
                sums.emplace_back(1 - sum);
            }
            res = *max_element(sums.begin(), sums.end());
            return res > 0 ? res : 1;
        }
    };
    int main()
    {
        Solution s;
        vector<int> nums = {-3, 2, -3, 4, 2};
        cout << "minStartValue: " << s.minStartValue(nums) << endl;
        return 0;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    The results

    (base) sunny@sunnydeMacBook-Air testForCpp % ./test
    minStartValue: 5
    
    • 1
    • 2
  • 相关阅读:
    Kernel编译报错:对yaml_emitter_initalize“未定义引用
    【组合递归】【StringBuilder】Leetcode 17. 电话号码的字母组合
    mysql数据库备份与恢复
    博途S7-1200PLC自由口通信(Send_P2P和Receive_P2P指令编程)
    图扑软件数字孪生 3D 风电场,智慧风电之海上风电
    如何运营好技术相关的自媒体?
    打印nXn方阵的上三角阵
    银行笔试题 java笔试题
    QT使用xml流QXmlStreamReader快速读取与QXmlStreamWriter写入xml文件
    linux基本命令(跑路人笔记)
  • 原文地址:https://blog.csdn.net/weixin_38396940/article/details/126241133
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | Kerberos协议及其部分攻击手法
    0day的产生 | 不懂代码的"代码审计"
    安装scrcpy-client模块av模块异常,环境问题解决方案
    leetcode hot100【LeetCode 279. 完全平方数】java实现
    OpenWrt下安装Mosquitto
    AnatoMask论文汇总
    【AI日记】24.11.01 LangChain、openai api和github copilot
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1
正则表达式工具 cron表达式工具 密码生成工具

京公网安备 11010502049817号