leetcode做题记录 3011(计算二进制中一的个数)3012

2024-04-17 00:04

本文主要是介绍leetcode做题记录 3011(计算二进制中一的个数)3012,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

3011. 判断一个数组是否可以变为有序 [题目的“有序”等价于“升序”]

思考

题目要求两个相邻元素在二进制下数位为1的数目相同才可以交换,那就要判断1相同的一块是否是按顺序排序的。从大到小和从小到大都测试一遍。找到一块中最大的和最小的,放在stack或者vector里面。

流程是先把num中的1的数量统计成vec,之后找出一块中的最大值和最小值,放在两个栈里面,看是否有序。

计算二进制中一的个数

方法一:循环,{是否是奇数,是就ans+1},之后除以2,再循环

while (num){if ((num & 1) == 1)count++;num = num >> 1;
}

方法二:bitset库自带计算1的个数

            bitset<9> b(nums[i]);

            int tp=b.count();

方法三:位运算

int count = 0;
while (i){i = i & (i - 1);count++;
}

方法四:__builtin_popcount(nums[i])来算1的个数

代码 12ms 击败67.59%

代码中用方法二来计算1的个数

class Solution {
public:bool canSortArray(vector<int>& nums) {stack<int>a;int now=0;int minn=999999999,maxn=0;for (int i=0;i<nums.size();i++){bitset<9> bo(nums[i]);int tp=bo.count();if(i==0 || tp==now){minn=min(minn,nums[i]);maxn=max(maxn,nums[i]);}else{a.push(minn);a.push(maxn);minn=nums[i],maxn=nums[i];}now=tp;}a.push(minn);a.push(maxn);int na=a.top();a.pop();while(!a.empty()){if(a.top()<=na){na=a.top();a.pop();}else return 0;}return 1;}
};

改进代码

用方法四计算1的个数,同时把stack去除

class Solution {
public:bool canSortArray(vector<int>& nums) {int n = nums.size();int i = 0, pre_max = 0;while (i < n) {int mx = nums[i];int ones = __builtin_popcount(nums[i]);while (i < n && __builtin_popcount(nums[i]) == ones) {if (nums[i] < pre_max) {return false;}mx = max(mx, nums[i++]);}pre_max = mx;}return true;}
};

 

3012. 通过操作使数组长度最小

这篇关于leetcode做题记录 3011(计算二进制中一的个数)3012的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/910273

相关文章

哈希leetcode-1

目录 1前言 2.例题  2.1两数之和 2.2判断是否互为字符重排 2.3存在重复元素1 2.4存在重复元素2 2.5字母异位词分组 1前言 哈希表主要是适合于快速查找某个元素(O(1)) 当我们要频繁的查找某个元素,第一哈希表O(1),第二,二分O(log n) 一般可以分为语言自带的容器哈希和用数组模拟的简易哈希。 最简单的比如数组模拟字符存储,只要开26个c

spoj705( 求不相同的子串个数)

题意:求串s的不同子串的个数 解题思路:任何子串都是某个后缀的前缀,对n个后缀排序,求某个后缀的前缀的个数,减去height[i](第i个后缀与第i-1 个后缀有相同的height[i]个前缀)。 代码如下: #include<iostream>#include<algorithm>#include<stdio.h>#include<math.h>#include<cstrin

poj 1113 凸包+简单几何计算

题意: 给N个平面上的点,现在要在离点外L米处建城墙,使得城墙把所有点都包含进去且城墙的长度最短。 解析: 韬哥出的某次训练赛上A出的第一道计算几何,算是大水题吧。 用convexhull算法把凸包求出来,然后加加减减就A了。 计算见下图: 好久没玩画图了啊好开心。 代码: #include <iostream>#include <cstdio>#inclu

uva 1342 欧拉定理(计算几何模板)

题意: 给几个点,把这几个点用直线连起来,求这些直线把平面分成了几个。 解析: 欧拉定理: 顶点数 + 面数 - 边数= 2。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#inc

uva 11178 计算集合模板题

题意: 求三角形行三个角三等分点射线交出的内三角形坐标。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vector>#include <

XTU 1237 计算几何

题面: Magic Triangle Problem Description: Huangriq is a respectful acmer in ACM team of XTU because he brought the best place in regional contest in history of XTU. Huangriq works in a big compa

XTU 1233 n个硬币连续m个正面个数(dp)

题面: Coins Problem Description: Duoxida buys a bottle of MaiDong from a vending machine and the machine give her n coins back. She places them in a line randomly showing head face or tail face o

Node.js学习记录(二)

目录 一、express 1、初识express 2、安装express 3、创建并启动web服务器 4、监听 GET&POST 请求、响应内容给客户端 5、获取URL中携带的查询参数 6、获取URL中动态参数 7、静态资源托管 二、工具nodemon 三、express路由 1、express中路由 2、路由的匹配 3、路由模块化 4、路由模块添加前缀 四、中间件

leetcode-24Swap Nodes in Pairs

带头结点。 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) { val = x; }* }*/public class Solution {public ListNode swapPairs(L

leetcode-23Merge k Sorted Lists

带头结点。 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) { val = x; }* }*/public class Solution {public ListNode mergeKLists