leetcode2009--使数组连续的最少操作数

2024-04-10 12:36

本文主要是介绍leetcode2009--使数组连续的最少操作数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1. 题意

给定一个数组,求最少的操作数使得数组连续。

每次操作你可选择一个数,将它变为任意其他数。

leetcode2009

2. 题解

思路:反向考虑,最多能保留多少个数字使得当前数组连续。

就变成了 [ x , x + s z − 1 ] [x,x+sz-1] [x,x+sz1]的滑动窗口,最多包含了几个数组中的数字。

还有需要去重,重复的数字一定需要一次来改变。

最后的答案即 s z − m a x _ n u m b e r _ i n _ w i n d o w sz-max\_number\_in\_window szmax_number_in_window

其中有序数组去重对应leetcode26–删除有序数组重复项。

2.1 排序+去重+滑动窗口

class Solution {
public:int minOperations(vector<int>& nums) {sort(nums.begin(), nums.end());int sz = nums.size();int cnt = 0;for (int i = 1; i < sz; ++i) {if ( nums[i] != nums[cnt]) {nums[++cnt] = nums[i];}}cout << cnt  + 1<< endl;int l = 0;int ans = 0;for (int i = 1; i < cnt + 1; ++i) {if ( nums[i] - nums[l] > sz - 1) {ans = max(ans, i - l);while (i < cnt + 1 && nums[i] - nums[l] > sz - 1)++l;}}ans = max(ans, cnt + 1 - l);return sz - ans;}
};
2.2 排序+去重+二分

可以固定左边界,二分寻找右边界。

class Solution {
public:int minOperations(vector<int>& nums) {sort(nums.begin(), nums.end());int sz = nums.size();int cnt = 0;for (int i = 1; i < sz; ++i) {if ( nums[i] != nums[cnt]) {nums[++cnt] = nums[i];}}int l = 0;int ans = sz;for (int i = 0; i < cnt + 1; ++i) {int l = i + 1;int r = cnt + 1;while ( l < r) {int m = l + (r -l >> 1);if ( nums[m] - nums[i] <= sz - 1) {l = m + 1;}else {r = m;}}ans = min(ans, sz -(l - i));}return ans;}
};

这篇关于leetcode2009--使数组连续的最少操作数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

hdu2241(二分+合并数组)

题意:判断是否存在a+b+c = x,a,b,c分别属于集合A,B,C 如果用暴力会超时,所以这里用到了数组合并,将b,c数组合并成d,d数组存的是b,c数组元素的和,然后对d数组进行二分就可以了 代码如下(附注释): #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<que

poj2406(连续重复子串)

题意:判断串s是不是str^n,求str的最大长度。 解题思路:kmp可解,后缀数组的倍增算法超时。next[i]表示在第i位匹配失败后,自动跳转到next[i],所以1到next[n]这个串 等于 n-next[n]+1到n这个串。 代码如下; #include<iostream>#include<algorithm>#include<stdio.h>#include<math.

hdu 1166 敌兵布阵(树状数组 or 线段树)

题意是求一个线段的和,在线段上可以进行加减的修改。 树状数组的模板题。 代码: #include <stdio.h>#include <string.h>const int maxn = 50000 + 1;int c[maxn];int n;int lowbit(int x){return x & -x;}void add(int x, int num){while

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

C语言:柔性数组

数组定义 柔性数组 err int arr[0] = {0}; // ERROR 柔性数组 // 常见struct Test{int len;char arr[1024];} // 柔性数组struct Test{int len;char arr[0];}struct Test *t;t = malloc(sizeof(Test) + 11);strcpy(t->arr,

C 语言基础之数组

文章目录 什么是数组数组变量的声明多维数组 什么是数组 数组,顾名思义,就是一组数。 假如班上有 30 个同学,让你编程统计每个人的分数,求最高分、最低分、平均分等。如果不知道数组,你只能这样写代码: int ZhangSan_score = 95;int LiSi_score = 90;......int LiuDong_score = 100;int Zhou

计算数组的斜率,偏移,R2

模拟Excel中的R2的计算。         public bool fnCheckRear_R2(List<double[]> lRear, int iMinRear, int iMaxRear, ref double dR2)         {             bool bResult = true;             int n = 0;             dou

C# double[] 和Matlab数组MWArray[]转换

C# double[] 转换成MWArray[], 直接赋值就行             MWNumericArray[] ma = new MWNumericArray[4];             double[] dT = new double[] { 0 };             double[] dT1 = new double[] { 0,2 };

PHP7扩展开发之数组处理

前言 这次,我们将演示如何在PHP扩展中如何对数组进行处理。要实现的PHP代码如下: <?phpfunction array_concat ($arr, $prefix) {foreach($arr as $key => $val) {if (isset($prefix[$key]) && is_string($val) && is_string($prefix[$key])) {$arr[

Go 数组赋值问题

package mainimport "fmt"type Student struct {Name stringAge int}func main() {data := make(map[string]*Student)list := []Student{{Name:"a",Age:1},{Name:"b",Age:2},{Name:"c",Age:3},}// 错误 都指向了最后一个v// a