8.4 Flags

Find the maximum number of flags that can be set on mountain peaks.
A non-empty zero-indexed array A consisting of N integers is given.
A peak is an array element which is larger than its neighbours. More precisely, it is an index P such that 0 < P < N − 1 and A[P − 1] < A[P] > A[P + 1].
For example, the following array A:
A[0] = 1
A[1] = 5
A[2] = 3
A[3] = 4
A[4] = 3
A[5] = 4
A[6] = 1
A[7] = 2
A[8] = 3
A[9] = 4
A[10] = 6
A[11] = 2
has exactly four peaks: elements 1, 3, 5 and 10.
You are going on a trip to a range of mountains whose relative heights are represented by array A, as shown in a figure below. You have to choose how many flags you should take with you. The goal is to set the maximum number of flags on the peaks, according to certain rules.

Flags can only be set on peaks. What’s more, if you take K flags, then the distance between any two flags should be greater than or equal to K. The distance between indices P and Q is the absolute value |P − Q|.
For example, given the mountain range represented by array A, above, with N = 12, if you take:
two flags, you can set them on peaks 1 and 5;
three flags, you can set them on peaks 1, 5 and 10;
four flags, you can set only three flags, on peaks 1, 5 and 10.
You can therefore set a maximum of three flags in this case.
Write a function:
class Solution { public int solution(int[] A); }
that, given a non-empty zero-indexed array A of N integers, returns the maximum number of flags that can be set on the peaks of the array.
For example, the following array A:
A[0] = 1
A[1] = 5
A[2] = 3
A[3] = 4
A[4] = 3
A[5] = 4
A[6] = 1
A[7] = 2
A[8] = 3
A[9] = 4
A[10] = 6
A[11] = 2
the function should return 3, as explained above.
Assume that:
N is an integer within the range [1..200,000];
each element of array A is an integer within the range [0..1,000,000,000].
Complexity:
expected worst-case time complexity is O(N);
expected worst-case space complexity is O(N), beyond input storage (not counting the storage required for input arguments).
i个flag将整个空间分为i-1块,每块的间隔最小为i,并且两端必须是peak。i <= Math.min(length,(int)Math.sqrt(A.length)+1);
预先将所有peak找出形成一个递增数组,采用穷举法依次减小i值,返回第一个满足条件的i

import java.util.*;
class Solution {
    public int solution(int[] A) {
        // write your code in Java SE 8
        if(A.length<3) return 0;
        int[] peaks = new int[A.length];
        int length = 0;
        for(int i=1; i<A.length-1; i++){
            // find peak
            if(A[i-1]<A[i] && A[i]>A[i+1]){
                peaks[length++] = i;
                i++; //the next data can`t be peak;
            }
        }
        peaks[length] = Integer.MAX_VALUE;
        int max = Math.min(length,(int)Math.sqrt(A.length)+1);

        for(int i=max; i>0; i--){
            int left = 0;
            int block=0;
            for(block=0; block<i-1; block++){
                int right = Arrays.binarySearch(peaks,left,length,peaks[left]+i);
                System.out.println(i+"- "+block + right);
                if(right>=0){
                    left = right;     
                }
                else{
                    left = Math.abs(right+1);
                    if(left >= length) break;
                }
                //left peaks are less than left block 
                //or left items are less than left block* each block size
                // if((length-1)-left < i-block || (A.length-1)-peaks[left] < (i-block)*i) 
                // break;
            }
            if(block == i-1){
                return i;
            }
        }  
        return 0;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值