赞
踩
牛客对应链接:数组中的最长连续子序列_牛客题霸_牛客网 (nowcoder.com)
排序 + 模拟。
注意:值连续,位置可以不连续!小心处理数字相同的情况。
- //值得学习的代码
- class Solution
- {
- public:
- int MLS(vector<int>& arr)
- {
- sort(arr.begin(), arr.end());
-
- int n = arr.size(), ret = 0;
- for(int i = 0; i < n; )
- {
- int j = i + 1, count = 1;
- while(j < n)
- {
- if(arr[j] - arr[j - 1] == 1)
- {
- count++;
- j++;
- }
- else if(arr[j] - arr[j - 1] == 0)
- {
- j++;
- }
- else
- {
- break;
- }
- }
- ret = max(ret, count);
- i = j;
- }
- return ret;
- }
- };
因为这种类型的题目做了很多,没有仔细读请题意就先入为主,导致理解错题目要求(原题并不复杂),我把这道题想成是之前做过的:300. 最长递增子序列 - 力扣(LeetCode),然而实际上这道题目要求的是连续的数值。因为题目不要求位置连续,那么就可以直接想到排序(我把这一块理解错了,导致没有排序去做),接着就是简单的模拟。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。