给定一个由N 个整数组成的数组arr[] ,代表木棒的高度。任务是找到可以使用这些木棍形成的最大正方形的面积以及这些正方形的数量。请注意,正方形的单边只能使用一根棍子。
例子:
Input: arr[] = {5, 3, 2, 3, 6, 3, 3}
Output:
Area = 9
Count = 1
Side of the square will be 3 and
only one such square is possible.
Input: arr[] = {2, 2, 2, 9, 2, 2, 2, 2, 2}
Output:
Area = 4
Count = 2
方法:计算数组中所有元素的频率。现在,从最大值开始(为了最大化面积)找到至少为 4 的第一个频率,以便可以形成一个正方形,然后面积可以计算为 freq[i] * freq[i] 和这样的正方形将是 freq[i] / 4。
下面是上述方法的实现:
C++
// C++ implementation of the approach
#include
using namespace std;
// Function to find the area of the largest
// square that can be formed
// and the count of such squares
void findMaxSquare(int arr[], int n)
{
// Maximum value from the array
int maxVal = *max_element(arr, arr + n);
// Update the frequencies of
// the array elements
int freq[maxVal + 1] = { 0 };
for (int i = 0; i < n; i++)
freq[arr[i]]++;
// Starting from the maximum length sticks
// in order to maximize the area
for (int i = maxVal; i > 0; i--) {
// The count of sticks with the current
// length has to be at least 4
// in order to form a square
if (freq[i] >= 4) {
cout << "Area = " << (pow(i, 2));
cout << "\nCount = " << (freq[i] / 4);
return;
}
}
// Impossible to form a square
cout << "-1";
}
// Driver code
int main()
{
int arr[] = { 2, 2, 2, 9, 2, 2, 2, 2, 2 };
int n = sizeof(arr) / sizeof(arr[0]);
findMaxSquare(arr, n);
return 0;
}
Java
// Java implementation of the approach
import java.util.*;
class GFG
{
// Function to find the area of the largest
// square that can be formed
// and the count of such squares
static void findMaxSquare(int arr[], int n)
{
// Maximum value from the array
int maxVal = Arrays.stream(arr).max().getAsInt();
// Update the frequencies of
// the array elements
int []freq = new int[maxVal + 1];
for (int i = 0; i < n; i++)
freq[arr[i]]++;
// Starting from the maximum length sticks
// in order to maximize the area
for (int i = maxVal; i > 0; i--)
{
// The count of sticks with the current
// length has to be at least 4
// in order to form a square
if (freq[i] >= 4)
{
System.out.print("Area = " +
(Math.pow(i, 2)));
System.out.print("\nCount = " +
(freq[i] / 4));
return;
}
}
// Impossible to form a square
System.out.print("-1");
}
// Driver code
public static void main(String[] args)
{
int arr[] = { 2, 2, 2, 9, 2, 2, 2, 2, 2 };
int n = arr.length;
findMaxSquare(arr, n);
}
}
// This code is contributed by Princi Singh
Python3
# Python3 implementation of the approach
# Function to find the area of the largest
# square that can be formed
# and the count of such squares
def findMaxSquare(arr, n) :
# Maximum value from the array
maxVal = max(arr);
# Update the frequencies of
# the array elements
freq = [0] * (maxVal + 1) ;
for i in range(n) :
freq[arr[i]] += 1;
# Starting from the maximum length sticks
# in order to maximize the area
for i in range(maxVal, 0, -1) :
# The count of sticks with the current
# length has to be at least 4
# in order to form a square
if (freq[i] >= 4) :
print("Area = ", pow(i, 2));
print("Count =", freq[i] // 4);
return;
# Impossible to form a square
print("-1");
# Driver code
if __name__ == "__main__" :
arr = [ 2, 2, 2, 9, 2, 2, 2, 2, 2 ];
n = len(arr);
findMaxSquare(arr, n);
# This code is contributed by AnkitRai01
C#
// C# implementation of the approach
using System;
using System.Linq;
class GFG
{
// Function to find the area of the largest
// square that can be formed
// and the count of such squares
static void findMaxSquare(int []arr, int n)
{
// Maximum value from the array
int maxVal = arr.Max();
// Update the frequencies of
// the array elements
int []freq = new int[maxVal + 1];
for (int i = 0; i < n; i++)
freq[arr[i]]++;
// Starting from the maximum length sticks
// in order to maximize the area
for (int i = maxVal; i > 0; i--)
{
// The count of sticks with the current
// length has to be at least 4
// in order to form a square
if (freq[i] >= 4)
{
Console.Write("Area = " +
(Math.Pow(i, 2)));
Console.Write("\nCount = " +
(freq[i] / 4));
return;
}
}
// Impossible to form a square
Console.Write("-1");
}
// Driver code
public static void Main(String[] args)
{
int []arr = { 2, 2, 2, 9, 2, 2, 2, 2, 2 };
int n = arr.Length;
findMaxSquare(arr, n);
}
}
// This code is contributed by 29AjayKumar
Javascript
输出:
Area = 4
Count = 2
时间复杂度: O(n)
辅助空间: O(n)
如果您希望与专家一起参加现场课程,请参阅DSA 现场工作专业课程和学生竞争性编程现场课程。