计算平均长度超过给定数组中值的 K 长度子数组

原文:https://www . geesforgeks . org/count-k-length-子数组-其平均值超过给定数组的中值/

给定一个由 N 个整数和一个正整数 K 组成的数组arr【】】,任务是找出大小为 K子数组的数量,其平均值大于其 中值 和两者的平均值,中值必须是素数或非素数。

示例:

输入: arr[] = {2,4,3,5,6},K = 3 输出: 2 说明: 满足给定条件的子阵如下:

  1. {2,4,3}:这个子阵的中位数是 3,平均值是(2 + 4 + 3)/3 = 3。因为中值和平均值都是质数,平均值> =中值。所以计数这个子阵列。
  2. {4,3,5}:这个子阵的中位数是 4,平均值是(4 + 3 + 5)/3 = 4。因为中值和平均值都是非质数,平均值> =中值。所以计数这个子阵列。

因此,子阵列的总数是 2。

输入: arr[] = {2,4,3,5,6},K = 2 T3】输出: 3

方法:给定的问题可以使用基于策略的数据结构有序集来解决。按照以下步骤解决给定的问题:

  • 使用厄拉多塞筛将所有质数和非质数预计算至105T5。
  • 初始化一个变量,比如计数,它存储子阵列的结果计数。
  • 找到第一个 K 元素的平均值中值,如果平均值> =中值,并且平均值和中值都是质数或非质数,那么将计数增加 1
  • 将第一个 K 数组元素存储在有序集中。
  • 在范围【0,N–K】内遍历给定数组,并执行以下步骤:
    • 从有序 _ 集中移除当前的元素arr【I】,并向有序 _ 集中添加 (i + k) 元素,即arr【I+K】
    • 使用函数找到 _ order _ by _ set((K+1)/2–1),找到数组的中值。
    • 求当前子阵列的平均值。
    • 如果平均值> =中值,并且平均值和中值都是质数或非质数,那么将计数增加 1
  • 完成上述步骤后,打印计数的值作为结果。

下面是上述方法的实现。

C++

// C++ program for the above approach

#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <stdlib.h>
using namespace __gnu_pbds;

using namespace std;
typedef tree<int, null_type, less_equal<int>,
             rb_tree_tag,
             tree_order_statistics_node_update>
    ordered_set;

const int mxN = (int)1e5;

// Stores whether i is prime or not
bool prime[mxN + 1];

// Function to precompute all the prime
// numbers using sieve of erastothenes
void SieveOfEratosthenes()
{
    // Initialize the prime array
    memset(prime, true, sizeof(prime));

    // Iterate over the range [2, mxN]
    for (int p = 2; p * p <= mxN; p++) {

        // If the prime[p] is unchanged,
        // then it is a prime
        if (prime[p]) {

            // Mark all multiples of p
            // as non-prime
            for (int i = p * p;
                 i <= mxN; i += p)
                prime[i] = false;
        }
    }
}

// Function to find number of subarrays
// that satisfy the given criteria
int countSubarray(int arr[], int n, int k)
{
    // Initialize the ordered_set
    ordered_set s;

    // Stores the sum for subarray
    int sum = 0;
    for (int i = 0; i < (int)k; i++) {
        s.insert(arr[i]);
        sum += arr[i];
    }

    // Stores the average for each
    // possible subarray
    int avgsum = sum / k;

    // Stores the count of subarrays
    int ans = 0;

    // For finding the median use the
    // find_by_order(k) that returns
    // an iterator to kth element
    int med = *s.find_by_order(
        (k + 1) / 2 - 1);

    // Check for the valid condition
    if (avgsum - med >= 0
        && ((prime[med] == 0
             && prime[avgsum] == 0)
            || (prime[med] != 0
                && prime[avgsum] != 0))) {

        // Increment the resultant
        // count of subarray
        ans++;
    }

    // Iterate the subarray over the
    // the range [0, N - K]
    for (int i = 0; i < (int)(n - k); i++) {

        // Erase the current element
        // arr[i]
        s.erase(s.find_by_order(
            s.order_of_key(arr[i])));

        // The function Order_of_key(k)
        // returns the number of items
        // that are strictly smaller
        // than K
        s.insert(arr[i + k]);
        sum -= arr[i];

        // Add the (i + k)th element
        sum += arr[i + k];

        // Find the average
        avgsum = sum / k;

        // Get the median value
        med = *s.find_by_order(
            (k + 1) / 2 - 1);

        // Check the condition
        if (avgsum - med >= 0
            && ((prime[med] == 0
                 && prime[avgsum] == 0)
                || (prime[med] != 0
                    && prime[avgsum] != 0))) {

            // Increment the count of
            // subarray
            ans++;
        }
    }

    // Return the resultant count
    // of subarrays
    return ans;
}

// Driver Code
int main()
{
    // Precompute all the primes
    SieveOfEratosthenes();

    int arr[] = { 2, 4, 3, 5, 6 };
    int K = 3;
    int N = sizeof(arr) / sizeof(arr[0]);

    cout << countSubarray(arr, N, K);

    return 0;
}

Output: 

2

时间复杂度:O(N * log N+N * log(log N)) 辅助空间: O(N)