当前位置: 首页 > article >正文

第 126 场 LeetCode 双周赛题解

A 求出加密整数的和

在这里插入图片描述

模拟

class Solution {
public:
    int sumOfEncryptedInt(vector<int> &nums) {
        int res = 0;
        for (auto x: nums) {
            string s = to_string(x);
            char ch = *max_element(s.begin(), s.end());
            for (auto &c: s)
                c = ch;
            res += stoi(s);
        }
        return res;
    }
};

B 执行操作标记数组中的元素

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

模拟:用堆维护元素中的最小元素,用数组记录元素是否被标记过,模拟对数组的操作过程

class Solution {
public:
    using ll = long long;

    vector<long long> unmarkedSumArray(vector<int> &nums, vector<vector<int>> &queries) {
        priority_queue<pair<int, int>, vector<pair<int, int>>, greater<>> heap;//最小堆
        int n = nums.size();
        for (int i = 0; i < n; i++)
            heap.emplace(nums[i], i);
        ll s = accumulate(nums.begin(), nums.end(), 0LL);
        vector<int> tag(n);
        vector<ll> res;
        for (auto &q: queries) {
            if (!tag[q[0]]) {//未被标记过
                tag[q[0]] = 1;
                s -= nums[q[0]];
            }
            for (int i = 0; i < q[1] && !heap.empty();) {//尽量标记ki个数组中还没有标记的最小元素
                auto [v, ind] = heap.top();
                heap.pop();
                if (tag[ind])
                    continue;
                tag[ind] = 1;
                s -= v;
                i++;
            }
            res.push_back(s);
        }
        return res;
    }
};


C 替换字符串中的问号使分数最小

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

贪心:记录 s s s 中各英文字母的出现次数,然后遍历 s s s ,遇到 ? ? ? 时将当前出现次数最小的英文字母放至该位置,同时该字母出现次数 + 1 +1 +1 ,最后对原字符串中所有 ? ? ? 处的字母进行排序,即得到满足条件的字符串

class Solution {
public:
    string minimizeStringValue(string s) {
        vector<int> cnt(26);
        string res;
        vector<char> li;
        vector<int> loc;
        int j = 0;
        for (auto c: s)
            if (c != '?')
                cnt[c - 'a']++;
        for (auto c: s) {
            if (c == '?') {
                int mn = *min_element(cnt.begin(), cnt.end());
                for (int i = 0; i < 26; i++)
                    if (cnt[i] == mn) {
                        cnt[i]++;
                        li.push_back('a' + i);
                        loc.push_back(j);
                        break;
                    }
            }
            j++;
        }
        sort(li.begin(), li.end());
        for (int i = 0; i < li.size(); i++)
            s[loc[i]] = li[i];
        return s;
    }
};

D 求出所有子序列的能量和

在这里插入图片描述
在这里插入图片描述

动态规划:设 p [ i + 1 ] [ j ] [ v ] p[i+1][j][v] p[i+1][j][v] 为字符串 n u m s [ 0 , i ] nums[0,i] nums[0,i] 中长度为 j j j 和为 v v v 的自序列的数目,因为 n u m s nums nums 任意一个长为 j j j 的子序列, n u m s nums nums 包含该子序列的子序列数目为 2 n − j 2^{n-j} 2nj ,所以 n u m s nums nums 中所有子序列的能量和为 ∑ j = 1 n p [ n ] [ j ] [ k ] × 2 n − j \sum_{j=1}^n p[n][j][k]\times 2^{n-j} j=1np[n][j][k]×2nj

class Solution {
public:
    using ll = long long;

    int sumOfPower(vector<int> &nums, int k) {
        ll mod = 1e9 + 7;
        int n = nums.size();
        int p[n + 1][n + 1][k + 1];
        memset(p, 0, sizeof(p));
        p[0][0][0] = 1;
        for (int i = 0; i < n; i++) {
            p[i + 1][0][0] = 1;
            for (int j = 1; j <= i + 1; j++)
                for (int v = 1; v <= k; v++) {
                    if (v - nums[i] >= 0)
                        p[i + 1][j][v] = (p[i + 1][j][v] + p[i][j - 1][v - nums[i]]) % mod;
                    p[i + 1][j][v] = (p[i + 1][j][v] + p[i][j][v]) % mod;
                }
        }
        vector<ll> pow(n);
        pow[0] = 1;
        for (int i = 1; i < n; i++)
            pow[i] = pow[i - 1] * 2 % mod;
        ll res = 0;
        for (int j = 1; j <= n; j++)
            if (p[n][j][k])
                res = (res + p[n][j][k] * pow[n - j]) % mod;
        return (res + mod) % mod;
    }
};

http://www.kler.cn/a/272381.html

相关文章:

  • iOS中的设计模式(三)- 工厂方法
  • 浅说树上倍增(下)
  • 以租赁合同的例子讲清楚 开源协议原理和区别
  • -bash: /java: cannot execute binary file
  • 数据结构入门
  • 【C++】如何从源代码编译红色警戒2地图编辑器
  • 设计原则、工厂、单例模式
  • 程序人生——Java异常使用建议
  • el-select使用filterable下拉无法关闭得问题
  • react03
  • Java推荐算法——特征加权推荐算法(以申请学校为例)
  • 合并两个有序链表
  • RabbitMQ命令行监控命令详解
  • Redis7学习记录(1)
  • 2024-3-17Go语言入门
  • macOS Ventura 13.6.5 (22G621) Boot ISO 原版可引导镜像下载
  • 通俗易懂的Python循环讲解
  • LeetCode Python - 59. 螺旋矩阵 II
  • 使用 GitHub Actions 通过 CI/CD 简化 Flutter 应用程序开发
  • 矩阵中移动的最大次数
  • 基于粒子群算法的分布式电源配电网重构优化matlab仿真
  • 谈谈IC、ASIC、SoC、MPU、MCU、CPU、GPU、DSP、FPGA、CPLD的简介
  • C语言自学笔记8----C语言Switch语句
  • Redis-复制功能
  • Spring web MVC(2)
  • 【STM32 定时器(二)TIM 输入捕获PWM 总结】