博客记录-day144-力扣

一、力扣

1、统计好子数组的数目

2537. 统计好子数组的数目

java 复制代码
class Solution {
    public long countGood(int[] nums, int k) {
        long res=0;
        int count=0;
        int left=0;
        Map<Integer,Integer> map=new HashMap<>();
        for(var e:nums){
            count+=map.getOrDefault(e,0);
            map.merge(e,1,Integer::sum);
            while(count>=k){
                count=count-map.get(nums[left])+1;
                map.merge(nums[left],-1,Integer::sum);
                left++;
            }
            res+=left;
        }
        return res;
    }
}

2、指定日期的产品价格

1164. 指定日期的产品价格

sql 复制代码
select p1.product_id, ifnull(p2.new_price, 10) as price
from (
    select distinct product_id
    from products
) as p1 -- 所有的产品
left join (
    select product_id, new_price 
    from products
    where (product_id, change_date) in (
        select product_id, max(change_date)
        from products
        where change_date <= '2019-08-16'
        group by product_id
    )
) as p2 -- 在 2019-08-16 之前有过修改的产品和最新的价格
on p1.product_id = p2.product_id

3、连续出现的数字

180. 连续出现的数字

sql 复制代码
select distinct a.num ConsecutiveNums
from Logs a,Logs b,Logs c
where a.id=b.id-1 
    and b.id=c.id-1
    and a.num=b.num
    and b.num=c.num

4、二叉树中的最大路径和

124. 二叉树中的最大路径和

java 复制代码
class Solution {
    int res=0;
    public int maxPathSum(TreeNode root) {
        res=root.val;
        dfs(root);
        return res;
    }
    public int dfs(TreeNode root){
        if(root==null) return 0;
        int left=Math.max(dfs(root.left),0);
        int right=Math.max(dfs(root.right),0);
        res=Math.max(res,left+right+root.val);
        return Math.max(left,right)+root.val;
    }
}

5、字符串转换整数

8. 字符串转换整数 (atoi)

java 复制代码
public class Solution {
    public int myAtoi(String str) {
        char[] chars = str.toCharArray();
        int n = chars.length;
        int idx = 0;
        while (idx < n && chars[idx] == ' ') {
            // 去掉前导空格
            idx++;
        }
        if (idx == n) {
            //去掉前导空格以后到了末尾了
            return 0;
        }
        boolean negative = false;
        if (chars[idx] == '-') {
            //遇到负号
            negative = true;
            idx++;
        } else if (chars[idx] == '+') {
            // 遇到正号
            idx++;
        } else if (!Character.isDigit(chars[idx])) {
            // 其他符号
            return 0;
        }
        int ans = 0;
        while (idx < n && Character.isDigit(chars[idx])) {
            int digit = chars[idx] - '0';
            if (ans > (Integer.MAX_VALUE - digit) / 10) {
                // 本来应该是 ans * 10 + digit > Integer.MAX_VALUE
                // 但是 *10 和 + digit 都有可能越界,所有都移动到右边去就可以了。
                return negative? Integer.MIN_VALUE : Integer.MAX_VALUE;
            }
            ans = ans * 10 + digit;
            idx++;
        }
        return negative? -ans : ans;
    }
}

6、 最长有效括号

32. 最长有效括号

java 复制代码
public int longestValidParentheses(String s) {
    int maxans = 0;
    Stack<Integer> stack = new Stack<>();
    stack.push(-1);
    for (int i = 0; i < s.length(); i++) {
        if (s.charAt(i) == '(') {
            stack.push(i);
        } else {
            stack.pop();
            if (stack.empty()) {
                stack.push(i);
            } else {
                maxans = Math.max(maxans, i - stack.peek());
            }
        }
    }
    return maxans;
}

7、零钱兑换

322. 零钱兑换

java 复制代码
class Solution {
    public int coinChange(int[] coins, int amount) {
        int n=coins.length;
        int[][] dp=new int[n+1][amount+1];
        Arrays.fill(dp[0],Integer.MAX_VALUE/2);
        dp[0][0]=0;
        for(int i=0;i<n;i++){
            for(int j=0;j<=amount;j++){
                if(coins[i]>j){
                    dp[i+1][j]=dp[i][j];                
                }else{
                    dp[i+1][j]=Math.min(dp[i][j],dp[i+1][j-coins[i]]+1);
                }
            }
        }
        return dp[n][amount]==Integer.MAX_VALUE/2?-1:dp[n][amount];
    }
}
相关推荐
赵文宇(温玉)41 分钟前
构建内网离线的“github.com“,完美解决内网Go开发依赖
开发语言·golang·github
牛奶咖啡131 小时前
利用Github与Hexo搭建属于自己的在线个人博客
github·hexo创建静态博客·免费部署博客到公网上·创建自定义静态博客·将静态博客上传到github·将自己的网站发布到网上
散峰而望1 小时前
C++入门(一)(算法竞赛)
c语言·开发语言·c++·编辑器·github
qq_5470261792 小时前
OAuth 2.0 安全授权
git·安全·github
uhakadotcom5 小时前
基于 TOON + Next.js 来大幅节省 token 并运行大模型
前端·面试·github
孟陬6 小时前
别再社死了!`includeIf` 一招搞定 Git 提交者信息错乱,守护你的邮箱隐私
git·github
Cyril_KI7 小时前
大模型长文生成中的幻觉与事实性:研究进展综述
大模型·llm·github·综述·幻觉
逛逛GitHub8 小时前
3 个近期"优质"的 AI 开源项目, 有点绝。
架构·github
Pluto53813 小时前
第一个app产品的迭代
ios·github
liuccn14 小时前
Ubuntu 22.04 离线升级 OpenSSH 到 9.8p1
linux·ubuntu·github