当前位置:网站首页>最长的可整合子数组的长度
最长的可整合子数组的长度
2022-07-04 18:48:00 【GreyZeng】
最长的可整合子数组的长度
作者:Grey
原文地址: 最长的可整合子数组的长度
题目链接
描述
先给出可整合数组的定义:如果一个数组在排序之后,每相邻两个数的差的绝对值都为1,或者该数组长度为1,则该数组为可整合数组。例如,
[5, 3, 4, 6, 2]
排序后为[2, 3, 4, 5, 6]
,符合每相邻两个数差的绝对值都为1,所以这个数组为可整合数组,给定一个数组arr
, 请返回其中最大可整合子数组的长度。
例如,[5, 5, 3, 2, 6, 4, 3]
的最大可整合子数组为[5, 3, 2, 6, 4]
,所以请返回5
数据范围:0 <n≤100000
,数组中每个数都满足0≤val≤10^9
要求:时间复杂度为O(n^2)
,空间复杂度为O(n)
进阶:时间复杂度O(nlogn)
,空间复杂度O(n)
暴力解法
枚举每个子数组,然后对每个子数组进行排序,然后判断是否为可整合数组,完整代码如下
public static int getLIL1(int[] arr) {
if (arr == null || arr.length == 0) {
return 0;
}
int len = 0;
// O(N^3 * log N)
for (int start = 0; start < arr.length; start++) {
for (int end = start; end < arr.length; end++) {
if (isIntegrated(arr, start, end)) {
len = Math.max(len, end - start + 1);
}
}
}
return len;
}
public static boolean isIntegrated(int[] arr, int left, int right) {
int[] newArr = Arrays.copyOfRange(arr, left, right + 1); // O(N)
Arrays.sort(newArr); // O(N*logN)
for (int i = 1; i < newArr.length; i++) {
if (newArr[i - 1] != newArr[i] - 1) {
return false;
}
}
return true;
}
暴力解法的时间复杂度是O(N^3*logN)
,显然超时。
优化解
某个数组如果属于可整合数组,则这个数组一定符合如下两个条件:
第一个条件:数组中的元素没有重复。
第二个条件:数组中的最大值和最小值的差值等于数组元素个数-1
。
如果满足上述两个条件,一定是可整合数组。
我们可以通过设置一个HashSet
来判断元素是否重复。
完整代码
public static int getLIL2(int[] arr) {
if (arr == null || arr.length == 0) {
return 0;
}
int len = 0;
int max = 0;
int min = 0;
HashSet<Integer> set = new HashSet<Integer>();
for (int l = 0; l < arr.length; l++) {
set.clear();
max = arr[l];
min = arr[l];
for (int r = l; r < arr.length; r++) {
if (set.contains(arr[r])) {
break;
}
set.add(arr[r]);
max = Math.max(max, arr[r]);
min = Math.min(min, arr[r]);
if (max - min == r - l) {
len = Math.max(len, r - l + 1);
}
}
}
return len;
}
整个算法时间复杂度O(N*logN)
,符合要求。
更多
边栏推荐
- Crystal optoelectronics: ar-hud products of Chang'an dark blue sl03 are supplied by the company
- Lingyun going to sea | Murong Technology & Huawei cloud: creating a model of financial SaaS solutions in Africa
- Chrome development tool: what the hell is vmxxx file
- 漫谈客户端存储技术之Cookie篇
- 华为云云商店首页 Banner 资源位申请
- 解密函数计算异步任务能力之「任务的状态及生命周期管理」
- Application practice | Shuhai supply chain construction of data center based on Apache Doris
- HDU 1097 A hard puzzle
- Thinking on demand development
- ACM组合计数入门
猜你喜欢
B2B mall system development of electronic components: an example of enabling enterprises to build standardized purchase, sale and inventory processes
The company needs to be monitored. How do ZABBIX and Prometheus choose? That's the right choice!
Selected review | machine learning technology for Cataract Classification / classification
CANN算子:利用迭代器高效实现Tensor数据切割分块处理
Abc229 summary (connected component count of the longest continuous character graph in the interval)
解密函数计算异步任务能力之「任务的状态及生命周期管理」
实战模拟│JWT 登录认证
What are the consequences of closing the read / write channel?
Dark horse programmer - software testing - 09 stage 2-linux and database -31-43 instructions issued by modifying the file permission letter, - find the link to modify the file, find the file command,
Application practice | Shuhai supply chain construction of data center based on Apache Doris
随机推荐
做社交媒体营销应该注意些什么?Shopline卖家的成功秘笈在这里!
精选综述 | 用于白内障分级/分类的机器学习技术
多表操作-内连接查询
Wireshark network packet capture
MySQL中的日期时间类型与格式化方式
Template_ Judging prime_ Square root / six prime method
Data set division
Optimize if code with policy mode [policy mode]
1008 elevator (20 points) (PAT class a)
Introduction to ACM combination counting
Free soldier
NLP、视觉、芯片...AI重点方向发展几何?青源会展望报告发布[附下载]
Basic use of kotlin
Swagger suddenly went crazy
水晶光电:长安深蓝SL03的AR-HUD产品由公司供应
C language - Introduction - Foundation - grammar - process control (VII)
HMM hidden Markov model and code implementation
kotlin 继承
Multi table operation - external connection query
实战模拟│JWT 登录认证