• LeetCode 单周赛309 && LeetCode双周赛86 && AcWing周赛67


    一、LeetCode 单周赛309

    1、2399.检查相同字母间的距离

    (1)原题链接:力扣https://leetcode.cn/problems/check-distances-between-same-letters/

    (2)解题思路:

            1、先统计字母一共有几种;

            2、再遍历distance 记录满足要求的字母的个数;

            3、判断1、2中的结果是否相等,若相等则说明满足题意return true,反之return false。

    (3)代码:

    1. class Solution {
    2. public:
    3. bool checkDistances(string s, vector<int>& distance) {
    4. map<char, int> mp;
    5. for(auto& ch: s) mp[ch] ++;
    6. int cnt = 0;
    7. for(int i = 0; i < 26; i ++ ) {
    8. char ch = 'a' + i;
    9. int t1 = s.find_first_of(ch);
    10. int t2 = s.find_last_of(ch);
    11. if((t2 - t1 - 1) == distance[i]) cnt ++;
    12. }
    13. if(cnt == mp.size()) return true;
    14. else return false;
    15. }
    16. };

    2、6168.恰好移动k步到达某一位置的方法数目

    (1)原题链接:力扣https://leetcode.cn/problems/number-of-ways-to-reach-a-position-after-exactly-k-steps/

    (2)解题思路:

            1、设从 startPos 出发,往正方向走了 a 步,往负方向走了 (k - a)步后到达 endPos,根据组合数的定义可知答案为 Cka (k 步里选 a 步走正方向)。

            2、设 d = endPos - startPos,有方程 a - (k - a) = d,得 a = (d+k)/ 2,因此首先判断是否 (d + k)是偶数。最后求组合数即可。

    1. class Solution {
    2. const int MOD = 1e9 + 7;
    3. public:
    4. int numberOfWays(int startPos, int endPos, int k) {
    5. int d = endPos - startPos;
    6. if((d + k) % 2 == 1 || d > k) return 0;
    7. vector<vector<long long>> f(k + 1, vector(k + 1));
    8. for(int i = 0; i <= k; i ++ ) {
    9. f[i][0] = 1;
    10. for(int j = 1; j <= i; j ++) f[i][j] = (f[i - 1][j] + f[i - 1][j - 1]) % MOD;
    11. }
    12. return f[k][(d + k)/2];
    13. }
    14. };

    3、2401.最长优雅子数组

    (1)原题链接:力扣https://leetcode.cn/problems/longest-nice-subarray/solution/bao-li-mei-ju-pythonjavacgo-by-endlessch-z6t6/

    (2)解题思路:

            本题可以暴力枚举,可以把在优雅子数组中的元素按位或起来,用 or_ 保存,这样可以 O(1) 判断当前元素是否与前面的元素按位与的结果为 0。因为如果两个数想与为0, 那么说二进制表示的每一位对应的位置可能出现 1 的情况都只可能有一个优雅子数组中的元素占据。

    (3)代码:

    1. class Solution {
    2. public:
    3. int longestNiceSubarray(vector<int>& nums) {
    4. int res = 0;
    5. for(int i = 0; i < nums.size(); i ++ ) {
    6. int or_ = 0, j = i;
    7. while(j >= 0 && (or_ & nums[j]) == 0) or_ |= nums[j --];
    8. res = max(res, i - j);
    9. }
    10. return res;
    11. }
    12. };

    二、LeetCode双周赛86

    1、2395.和相等的子数组

    (1)原题链接:力扣https://leetcode.cn/problems/find-subarrays-with-equal-sum/

    (2)解题思路:

            直接暴力枚举,用哈希表保存所有长度为2的子数组和,然后统计和相等的个数,即可。

    (3)代码:

    1. class Solution {
    2. public:
    3. bool findSubarrays(vector<int>& nums) {
    4. int n = nums.size();
    5. if(n == 2) return false;
    6. unordered_map<int, int> mp;
    7. for(int i = 0; i < n - 1; i ++) {
    8. int tmp = nums[i] + nums[i + 1];
    9. mp[tmp] ++;
    10. }
    11. for(auto& [k, v]: mp) {
    12. if(v > 1) return true;
    13. }
    14. return false;
    15. }
    16. };

    2、2396.严格回文的数字

    (1)原题链接:力扣https://leetcode.cn/problems/strictly-palindromic-number/

    (2)解题思路:

            先求出2 到 n - 2进制对应的数字,然后转换为字符串的回文判断,即可。

    (3)代码:

    1. class Solution {
    2. public:
    3. string check(int n, int radix) {
    4. string ans = "";
    5. do{
    6. int t = n % radix;
    7. if(t >= 0 && t <= 9) ans += t + '0';
    8. else ans += t - 10 + 'a';
    9. n /= radix;
    10. }while(n != 0);
    11. reverse(ans.begin(), ans.end());
    12. return ans;
    13. }
    14. bool isStrictlyPalindromic(int n) {
    15. for(int i = 2; i <= n - 2; i ++ ) {
    16. string tmp = check(n, i);
    17. string cmp = tmp;
    18. reverse(cmp.begin(), cmp.end());
    19. if(tmp != cmp) return false;
    20. }
    21. return true;
    22. }
    23. };

    3、2397.被列覆盖的最多行数

    (1)原题链接:力扣icon-default.png?t=M7J4https://leetcode.cn/problems/maximum-rows-covered-by-columns/

    (2)解题思路:

            本题使用二进制枚举的方式来做,用1表示选了,0表示没选; 记录被覆盖的列数,然后更新答案的最大值即可。

    (3)代码:

    1. class Solution {
    2. public:
    3. int maximumRows(vector<vector<int>>& mat, int cols) {
    4. int n = mat.size();
    5. int m = mat[0].size();
    6. int res = 0;
    7. //二进制枚举
    8. for(int i = 0; i < 1 << m; i ++ ) {
    9. int cnt = 0;
    10. for(int j = 0; j < m; j ++ )
    11. cnt += i >> j & 1;
    12. if(cnt != cols) continue;
    13. //保存被覆盖的列数
    14. int total = 0;
    15. for(int j = 0; j < n; j ++ ) {
    16. bool flag = true;
    17. for(int k = 0; k < m; k ++ ) {
    18. //判断是否选取了该行中的每个数
    19. if(mat[j][k] && !(i >> k & 1)) {
    20. flag = false;
    21. break;
    22. }
    23. }
    24. if(flag) total ++;
    25. }
    26. res = max(res, total);
    27. }
    28. return res;
    29. }
    30. };

    三、AcWing周赛67

    1、4609.火柴棍数字

    (1)原题链接:4609. 火柴棍数字 - AcWing题库

    (2)解题思路:

            这题可以归结为一个找规律的题,可以观察到的是样例中的答案是有一定的规律的,设输入的是x,当x为偶数时答案为x/2个1,当x为奇数时答案为1个7 加上 (x / 2 - 1) 个1。

    (3)代码:

    1. #include <iostream>
    2. #include <cstring>
    3. #include <algorithm>
    4. #include <cmath>
    5. using namespace std;
    6. const int N = 1e5 + 10;
    7. int a[N];
    8. int main()
    9. {
    10. int t;
    11. cin >> t;
    12. while(t --) {
    13. int n;
    14. cin >> n;
    15. int tmp = n / 2;
    16. if(n % 2 == 0) {
    17. for(int i = 0; i < tmp; i ++) {
    18. cout << 1;
    19. }
    20. }
    21. else {
    22. cout << 7;
    23. if(n > 2) {
    24. for(int i = 1; i < tmp; i ++ ) {
    25. cout << 1;
    26. }
    27. }
    28. }
    29. puts("");
    30. }
    31. return 0;
    32. }

     

    2、4610.列表排序

    (1)原题链接:4610. 列表排序 - AcWing题库

    (2)解题思路:

            枚举交换任意两列或者不交换的情况,同时判断每一行不在按顺序排列的位置上的数的个数,若大于2则表示目标不能达成,反之表示目标可以达成。

    (3)代码:

    1. #include <iostream>
    2. #include <cstring>
    3. #include <algorithm>
    4. using namespace std;
    5. const int N = 22;
    6. int n, m;
    7. int g[N][N];
    8. bool check() {
    9. for(int i = 0; i < n; i ++) {
    10. int cnt = 0;
    11. for(int j = 0; j < m; j ++ ) {
    12. if(g[i][j] != j + 1) cnt ++;
    13. }
    14. if(cnt > 2) return false;
    15. }
    16. return true;
    17. }
    18. int main()
    19. {
    20. cin >> n >> m;
    21. for(int i = 0; i < n; i ++ ) {
    22. for(int j = 0; j < m; j ++ ) {
    23. cin >> g[i][j];
    24. }
    25. }
    26. for(int i = 0; i < m; i ++ ) {
    27. for(int j = i; j < m; j ++ ) {
    28. for(int k = 0; k < n; k ++ ) swap(g[k][i], g[k][j]);
    29. if(check()) {
    30. puts("YES");
    31. return 0;
    32. }
    33. for(int k = 0; k < n; k ++ ) swap(g[k][i], g[k][j]);
    34. }
    35. }
    36. puts("NO");
    37. return 0;
    38. }
  • 相关阅读:
    CyclicBarrier 用法 ,汇总统计
    C# WPF 开发一个 Emoji 表情查看软件
    【C语言】【数据结构】【顺序表】
    编译原理课程设计-对pl0语言进行扩充
    如何批量新建文件夹并重命名
    【Hack The Box】linux练习-- Paper
    Java前后端交互的一些细节
    c++ - 第15节 - 二叉树进阶
    mybatis中的og表达式都支持哪些 支持or and 传值是数字无所谓加不加‘ ‘ 传值为字符串必须加 ‘ ‘
    C语言:数组的删除
  • 原文地址:https://blog.csdn.net/m0_58068094/article/details/126708423