Day43| 1049 最后一块石头的重量 II 494 目标和 474 一和零

目录

[1049 最后一块石头的重量 II](#1049 最后一块石头的重量 II)

[494 目标和](#494 目标和)

[474 一和零](#474 一和零)


1049 最后一块石头的重量 II

cpp 复制代码
class Solution {
public:
    int lastStoneWeightII(vector<int>& stones) {
        int sum = 0;
        int target = 0;
        vector<int> dp(1510, 0);

        for(int i = 0; i < stones.size(); i++){
            sum += stones[i];
        }

        target = sum / 2;

        for(int i = 0; i < stones.size(); i++){
            for(int j = target; j >= stones[i]; j--){
                dp[j] = max(dp[j], dp[j - stones[i]] + stones[i]);
            }
        }
        return sum - dp[target] * 2;
    }
};

494 目标和

cpp 复制代码
class Solution {
public:
    int findTargetSumWays(vector<int>& nums, int target) {
        int bagsize = 0;//收集正数集合的需要的值
        int sum = 0;//数组里面元素总和

        for(int i = 0; i < nums.size(); i++){
            sum += nums[i];
        }

        if(abs(target) > sum) return 0;
        if((sum + target) % 2 == 1) return 0;
        bagsize = (sum + target) / 2;//bagsize就是我们本题的背包容量

        vector<int> dp(bagsize + 1, 0);//bagsize就是我们本题的背包容量,解释在上面笔记
        dp[0] = 1;

        for(int i = 0; i < nums.size(); i++){
            for(int j = bagsize; j >= nums[i]; j--){
                dp[j] += dp[j - nums[i]];
            }
        }
        return dp[bagsize];
    }
};

474 一和零

cpp 复制代码
class Solution {
public:
    int findMaxForm(vector<string>& strs, int m, int n) {
        // 1 dp数组定义,和之前题目不一样,这题我们要建个二维数组
        // 2 初始化成0
        vector<vector<int>> dp(m + 1, vector<int>(n + 1, 0));

        // 3 遍历数组
        for (string s : strs) {
            int zeronum = 0, onenum = 0;
            for (char c : s) {
                if (c == '0') {
                    zeronum++;
                } else {
                    onenum++;
                }
            }
            for (int i = m; i >= zeronum; i--) {
                for (int j = n; j >= onenum; j--) {
                    dp[i][j] = max(dp[i][j], dp[i - zeronum][j - onenum] + 1);
                }
            }
        }
        return dp[m][n];
    }
};
相关推荐
算法歌者2 分钟前
[算法]入门1.矩阵转置
算法
林开落L16 分钟前
前缀和算法习题篇(上)
c++·算法·leetcode
远望清一色17 分钟前
基于MATLAB边缘检测博文
开发语言·算法·matlab
tyler_download19 分钟前
手撸 chatgpt 大模型:简述 LLM 的架构,算法和训练流程
算法·chatgpt
SoraLuna39 分钟前
「Mac玩转仓颉内测版7」入门篇7 - Cangjie控制结构(下)
算法·macos·动态规划·cangjie
我狠狠地刷刷刷刷刷42 分钟前
中文分词模拟器
开发语言·python·算法
鸽鸽程序猿43 分钟前
【算法】【优选算法】前缀和(上)
java·算法·前缀和
九圣残炎1 小时前
【从零开始的LeetCode-算法】2559. 统计范围内的元音字符串数
java·算法·leetcode
YSRM1 小时前
Experimental Analysis of Dedicated GPU in Virtual Framework using vGPU 论文分析
算法·gpu算力·vgpu·pci直通
韭菜盖饭2 小时前
LeetCode每日一题3261---统计满足 K 约束的子字符串数量 II
数据结构·算法·leetcode