Leetcode 978. Longest Turbulent Subarray

A subarray A[i], A[i+1], ..., A[j] of A is said to be turbulent if and only if:

  • For i <= k < jA[k] > A[k+1] when k is odd, and A[k] < A[k+1] when k is even;
  • OR, for i <= k < jA[k] > A[k+1] when k is even, and A[k] < A[k+1] when k is odd.

That is, the subarray is turbulent if the comparison sign flips between each adjacent pair of elements in the subarray.

Return the length of a maximum size turbulent subarray of A.

 

Example 1:

Input: [9,4,2,10,7,8,8,1,9]
Output: 5
Explanation: (A[1] > A[2] < A[3] > A[4] < A[5])

Example 2:

Input: [4,8,12,16]
Output: 2

Example 3:

Input: [100]
Output: 1

 

Note:

  1. 1 <= A.length <= 40000
  2. 0 <= A[i] <= 10^9
public int maxTurbulenceSize(int[] A) {
        if (A.length == 1) return 1;
        int max = 1;
        for (int i = 0; i < A.length; i++) {
            int count = 1;
            for (int j = i; j < A.length-2; j++) {
                if ((A[j] == A[j+1] || A[j+1] == A[j+2]) || (A[j + 1] > A[j] && A[j + 2] > A[j + 1]) || (A[j + 1] < A[j] && A[j + 2] < A[j + 1])) {
                    break;
                } else {
                    count++;
                }
            }
            max = Math.max(max, ++count);
        }
        return max;
    }

 https://leetcode.com/contest/weekly-contest-120/problems/longest-turbulent-subarray/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值