【线段树】A000_LC_子数组中占绝大多数的元素(摩尔投票 / 线段树)

一、Problem

Implementing the class MajorityChecker, which has the following API:

MajorityChecker(int[] arr) constructs an instance of MajorityChecker with the given array arr;
int query(int left, int right, int threshold) has arguments such that:
0 <= left <= right < arr.length representing a subarray of arr;
2 * threshold > right - left + 1, ie. the threshold is always a strict majority of the length of the subarray
Each query(…) returns the element in arr[left], arr[left+1], …, arr[right] that occurs at least threshold times, or -1 if no such element exists.

MajorityChecker majorityChecker = new MajorityChecker([1,1,2,2,1,1]);
majorityChecker.query(0,5,4); // returns 1
majorityChecker.query(0,3,3); // returns -1
majorityChecker.query(2,3,2); // returns 2

Constraints:

1 <= arr.length <= 20000
1 <= arr[i] <= 20000
For each query, 0 <= left <= right < len(arr)
For each query, 2 * threshold > right - left + 1
The number of queries is at most 10000

二、Solution

方法一:摩尔投票

竟然不会 TLE, 1 0 4 + 5 = 9 10^{4+5=9}

class MajorityChecker {
    int a[];
    public MajorityChecker(int[] arr) {
        a = arr;
    }
    
    public int query(int left, int right, int thre) {
        int v = a[left], c = 1;
        for (int i = left+1; i < right; i++) {
            if (v == a[i])
                c++;
            else {
                c--;
                if (c == 0)
                    v = a[i+1];
            }
        }
        int cnt = 0;
        for (int i = left; i <= right; i++) if (v == a[i])
            cnt++;
        return cnt >= thre ? v : -1;
    }
}

复杂度分析

  • 时间复杂度: O ( q × n ) O(q × n)
  • 空间复杂度: O ( 1 ) O(1)

方法二:线段树

代办


复杂度分析

  • 时间复杂度: O ( ) O()
  • 空间复杂度: O ( ) O()

猜你喜欢

转载自blog.csdn.net/qq_43539599/article/details/106863479