📌  相关文章
📜  找到至少有一个重复项的最小子数组

📅  最后修改于: 2021-10-27 08:39:57             🧑  作者: Mango

给定一个包含N 个元素的数组 arr,任务是找到给定数组中至少包含一个重复元素的最小子数组的长度。子数组由数组的连续元素组成。如果不存在这样的数组,则打印“-1”。
例子:

Input: arr = {1, 2, 3, 1, 5, 4, 5}
Output: 3
Explanation:

Input: arr = {4, 7, 11, 3, 1, 2, 4}
Output: 7
Explanation:

天真的方法:

  • 诀窍是找到所有具有相等值的两个元素对。由于这两个元素具有相等的值,包围它们的子数组将至少有一个重复项,并且将成为答案的候选者之一。
  • 一个简单的解决方案是使用两个嵌套循环来查找每对元素。如果两个元素相等,则更新到目前为止获得的最大长度。

下面是上述方法的实现:

C++
// C++ program to find
// the smallest subarray having
// atleast one duplicate
#include 
using namespace std;
 
// Function to calculate
// SubArray Length
int subArrayLength(int arr[], int n)
{
 
    int minLen = INT_MAX;
 
    for (int i = 1; i < n; i++) {
        for (int j = 0; j < i; j++) {
            // If the two elements are equal,
            // then the subarray arr[i..j]
            // will definitely have a duplicate
            if (arr[i] == arr[j]) {
                // Update the minimum length
                // obtained so far
                minLen = min(minLen, i - j + 1);
            }
        }
    }
    if (minLen == INT_MAX) {
        return -1;
    }
 
    return minLen;
}
// Driver Code
int main()
{
    int n = 7;
    int arr[] = { 1, 2, 3, 1, 5, 4, 5 };
 
    int ans = subArrayLength(arr, n);
    cout << ans << '\n';
 
    return 0;
}


Java
// Java program to find
// the smallest subarray having
// atleast one duplicate
 
class GFG
{
     
    final static int INT_MAX = Integer.MAX_VALUE;
     
    // Function to calculate
    // SubArray Length
    static int subArrayLength(int arr[], int n)
    {
     
        int minLen = INT_MAX;
     
        for (int i = 1; i < n; i++)
        {
            for (int j = 0; j < i; j++)
            {
                // If the two elements are equal,
                // then the subarray arr[i..j]
                // will definitely have a duplicate
                if (arr[i] == arr[j])
                {
                    // Update the minimum length
                    // obtained so far
                    minLen = Math.min(minLen, i - j + 1);
                }
            }
        }
        if (minLen == INT_MAX)
        {
            return -1;
        }
     
        return minLen;
    }
     
    // Driver Code
    public static void main(String[] args)
    {
        int n = 7;
        int arr[] = { 1, 2, 3, 1, 5, 4, 5 };
     
        int ans = subArrayLength(arr, n);
        System.out.println(ans);
         
    }
}
 
// This code is contributed by AnkitRai01


Python
# Python program for above approach
n = 7
arr = [1, 2, 3, 1, 5, 4, 5]
minLen = n + 1
 
for i in range(1, n):
    for j in range(0, i):
        if arr[i]== arr[j]:
            minLen = min(minLen, i-j + 1)
 
if minLen == n + 1:
       print("-1")
else:
       print(minLen)


C#
// C# program to find
// the smallest subarray having
// atleast one duplicate
using System;
 
class GFG
{
     
    static int INT_MAX = int.MaxValue;
     
    // Function to calculate
    // SubArray Length
    static int subArrayLength(int []arr, int n)
    {
     
        int minLen = INT_MAX;
     
        for (int i = 1; i < n; i++)
        {
            for (int j = 0; j < i; j++)
            {
                // If the two elements are equal,
                // then the subarray arr[i..j]
                // will definitely have a duplicate
                if (arr[i] == arr[j])
                {
                    // Update the minimum length
                    // obtained so far
                    minLen = Math.Min(minLen, i - j + 1);
                }
            }
        }
        if (minLen == INT_MAX)
        {
            return -1;
        }
     
        return minLen;
    }
     
    // Driver Code
    public static void Main()
    {
        int n = 7;
        int []arr = { 1, 2, 3, 1, 5, 4, 5 };
     
        int ans = subArrayLength(arr, n);
        Console.WriteLine(ans);
         
    }
}
 
// This code is contributed by AnkitRai01


Javascript


C++
// C++ program to find
// the smallest subarray having
// atleast one duplicate
#include 
using namespace std;
 
// Function to calculate
// SubArray Length
int subArrayLength(int arr[], int n)
{
 
    int minLen = INT_MAX;
    // Last stores the index of the last
    // occurrence of the corresponding value
    unordered_map last;
 
    for (int i = 0; i < n; i++) {
        // If the element has already occurred
        if (last[arr[i]] != 0) {
            minLen = min(minLen, i - last[arr[i]] + 2);
        }
        last[arr[i]] = i + 1;
    }
    if (minLen == INT_MAX) {
        return -1;
    }
 
    return minLen;
}
 
// Driver Code
int main()
{
    int n = 7;
    int arr[] = { 1, 2, 3, 1, 5, 4, 5 };
 
    int ans = subArrayLength(arr, n);
    cout << ans << '\n';
 
    return 0;
}


Java
// Java program to find
// the smallest subarray having
// atleast one duplicate
import java.util.*;
 
class GFG
{
 
    // Function to calculate
    // SubArray Length
    static int subArrayLength(int arr[], int n)
    {
 
        int minLen = Integer.MAX_VALUE;
         
        // Last stores the index of the last
        // occurrence of the corresponding value
        HashMap last = new HashMap();
 
        for (int i = 0; i < n; i++)
        {
            // If the element has already occurred
            if (last.containsKey(arr[i]) && last.get(arr[i]) != 0)
            {
                minLen = Math.min(minLen, i - last.get(arr[i]) + 2);
            }
            last.put(arr[i], i + 1);
        }
        if (minLen == Integer.MAX_VALUE)
        {
            return -1;
        }
 
        return minLen;
    }
 
    // Driver Code
    public static void main(String[] args)
    {
        int n = 7;
        int arr[] = { 1, 2, 3, 1, 5, 4, 5 };
 
        int ans = subArrayLength(arr, n);
        System.out.print(ans);
    }
}
 
// This code is contributed by 29AjayKumar


Python
# Python program for above approach
 
n = 7
arr = [1, 2, 3, 1, 5, 4, 5]
 
last = dict()
 
minLen = n + 1
 
for i in range(0, n):
    if arr[i] in last:
        minLen = min(minLen, i-last[arr[i]]+2)
 
    last[arr[i]]= i + 1   
 
 
if minLen == n + 1:
       print("-1")
else:
       print(minLen)


C#
// C# program to find
// the smallest subarray having
// atleast one duplicate
using System;
using System.Collections.Generic;
 
class GFG
{
 
    // Function to calculate
    // SubArray Length
    static int subArrayLength(int []arr, int n)
    {
 
        int minLen = int.MaxValue;
         
        // Last stores the index of the last
        // occurrence of the corresponding value
        Dictionary last = new Dictionary();
 
        for (int i = 0; i < n; i++)
        {
            // If the element has already occurred
            if (last.ContainsKey(arr[i]) && last[arr[i]] != 0)
            {
                minLen = Math.Min(minLen, i - last[arr[i]] + 2);
            }
            if(last.ContainsKey(arr[i]))
                last[arr[i]] = i + 1;
            else
                last.Add(arr[i], i + 1);
        }
        if (minLen == int.MaxValue)
        {
            return -1;
        }
 
        return minLen;
    }
 
    // Driver Code
    public static void Main(String[] args)
    {
        int n = 7;
        int []arr = { 1, 2, 3, 1, 5, 4, 5 };
 
        int ans = subArrayLength(arr, n);
        Console.Write(ans);
    }
}
 
// This code is contributed by PrinciRaj1992


Javascript


输出:
3

时间复杂度: O(N 2 )
有效的方法:
这个问题可以使用散列技术的思想在O(N)时间和O(N)辅助空间中解决。这个想法是以线性方式遍历数组的每个元素,对于每个元素,使用哈希图找到它的最后一次出现,然后使用最后一次出现和当前索引的差异更新 min length 的值。此外,通过当前索引的值更新元素最后一次出现的值。

下面是上述方法的实现:

C++

// C++ program to find
// the smallest subarray having
// atleast one duplicate
#include 
using namespace std;
 
// Function to calculate
// SubArray Length
int subArrayLength(int arr[], int n)
{
 
    int minLen = INT_MAX;
    // Last stores the index of the last
    // occurrence of the corresponding value
    unordered_map last;
 
    for (int i = 0; i < n; i++) {
        // If the element has already occurred
        if (last[arr[i]] != 0) {
            minLen = min(minLen, i - last[arr[i]] + 2);
        }
        last[arr[i]] = i + 1;
    }
    if (minLen == INT_MAX) {
        return -1;
    }
 
    return minLen;
}
 
// Driver Code
int main()
{
    int n = 7;
    int arr[] = { 1, 2, 3, 1, 5, 4, 5 };
 
    int ans = subArrayLength(arr, n);
    cout << ans << '\n';
 
    return 0;
}

Java

// Java program to find
// the smallest subarray having
// atleast one duplicate
import java.util.*;
 
class GFG
{
 
    // Function to calculate
    // SubArray Length
    static int subArrayLength(int arr[], int n)
    {
 
        int minLen = Integer.MAX_VALUE;
         
        // Last stores the index of the last
        // occurrence of the corresponding value
        HashMap last = new HashMap();
 
        for (int i = 0; i < n; i++)
        {
            // If the element has already occurred
            if (last.containsKey(arr[i]) && last.get(arr[i]) != 0)
            {
                minLen = Math.min(minLen, i - last.get(arr[i]) + 2);
            }
            last.put(arr[i], i + 1);
        }
        if (minLen == Integer.MAX_VALUE)
        {
            return -1;
        }
 
        return minLen;
    }
 
    // Driver Code
    public static void main(String[] args)
    {
        int n = 7;
        int arr[] = { 1, 2, 3, 1, 5, 4, 5 };
 
        int ans = subArrayLength(arr, n);
        System.out.print(ans);
    }
}
 
// This code is contributed by 29AjayKumar

Python

# Python program for above approach
 
n = 7
arr = [1, 2, 3, 1, 5, 4, 5]
 
last = dict()
 
minLen = n + 1
 
for i in range(0, n):
    if arr[i] in last:
        minLen = min(minLen, i-last[arr[i]]+2)
 
    last[arr[i]]= i + 1   
 
 
if minLen == n + 1:
       print("-1")
else:
       print(minLen)

C#

// C# program to find
// the smallest subarray having
// atleast one duplicate
using System;
using System.Collections.Generic;
 
class GFG
{
 
    // Function to calculate
    // SubArray Length
    static int subArrayLength(int []arr, int n)
    {
 
        int minLen = int.MaxValue;
         
        // Last stores the index of the last
        // occurrence of the corresponding value
        Dictionary last = new Dictionary();
 
        for (int i = 0; i < n; i++)
        {
            // If the element has already occurred
            if (last.ContainsKey(arr[i]) && last[arr[i]] != 0)
            {
                minLen = Math.Min(minLen, i - last[arr[i]] + 2);
            }
            if(last.ContainsKey(arr[i]))
                last[arr[i]] = i + 1;
            else
                last.Add(arr[i], i + 1);
        }
        if (minLen == int.MaxValue)
        {
            return -1;
        }
 
        return minLen;
    }
 
    // Driver Code
    public static void Main(String[] args)
    {
        int n = 7;
        int []arr = { 1, 2, 3, 1, 5, 4, 5 };
 
        int ans = subArrayLength(arr, n);
        Console.Write(ans);
    }
}
 
// This code is contributed by PrinciRaj1992

Javascript


输出:
3

时间复杂度: O(N),其中 N 是数组的大小

如果您希望与专家一起参加现场课程,请参阅DSA 现场工作专业课程学生竞争性编程现场课程