Maximum Square Area by Removing Fences From a Field โ€” Algorithm Visualization & Coding Challenge

Choose Your Learning Path

How would you like to learn today?
Visualize algorithms in real time, explore them step by step, or challenge yourself with a test.Choose a path to focusโ€”or scroll down to preview all options.

๐Ÿง  Active Learning

Visualize the algorithm step-by-step with interactive animations in real time.

๐Ÿ“– Passive Learning

Read the full explanation, examples, and starter code at your own pace.

๐ŸŽฏ Challenge Mode

Drag and arrange the algorithm steps in the correct execution order.

๐Ÿง  Select Active to activate

JUMP INTO VISUALIZATION
Watch algorithms run step by step.

Follow every state change, comparison, and transformation as the execution unfolds in real time.

๐Ÿ“– Select Passive to activate

Understanding Maximum Square Area by Removing Fences From a Field
Detailed explanation and reference materials
Problem Overview

๐ŸŸฆ Maximum Square Area by Removing Fences From a Field

Difficulty: Medium
Topics: Geometry, Math, Sets


๐ŸŒพ Problem Overview

You are given a large rectangular field of size (m โˆ’ 1) ร— (n โˆ’ 1) with corners at:

  • (1, 1)
  • (m, n)

Inside the field, there are:

  • Horizontal fences โ†’ provided in hFences
  • Vertical fences โ†’ provided in vFences

Your task is to remove some fences (possibly none) and determine the maximum possible area of a square field that can be formed.

If itโ€™s impossible to form a square, return -1.

โš ๏ธ Since the result can be very large, return the answer (10^9 + 7).


๐Ÿงฑ Fence Details

Horizontal Fences

Each horizontal fence is located at:

(hFences[i], 1) โ†’ (hFences[i], n)

Vertical Fences

Each vertical fence is located at:

(1, vFences[i]) โ†’ (m, vFences[i])

๐Ÿšง Boundary Fences (Cannot Be Removed)

The field is permanently surrounded by 4 fences:

  • Top: (1, 1) โ†’ (1, n)
  • Bottom: (m, 1) โ†’ (m, n)
  • Left: (1, 1) โ†’ (m, 1)
  • Right: (1, n) โ†’ (m, n)

These fences cannot be removed.


๐ŸŽฏ Objective

Find the largest square area that can be formed by removing some internal fences.

  • โœ… Return the maximum square area
  • โŒ Return -1 if no square can be formed

๐Ÿงช Examples

โœ… Example 1

Input

m = 4, n = 3
hFences = [2, 3]
vFences = [2]

Output

4

Explanation
Removing:

  • Horizontal fence at 2
  • Vertical fence at 2

Creates a 2 ร— 2 square, so area = 4.


โŒ Example 2

Input

m = 6, n = 7
hFences = [2]
vFences = [4]

Output

-1

Explanation
No possible way to remove fences to form a square.

๐Ÿ“Œ Constraints


3โ‰คm,nโ‰ค1091โ‰คโˆฃhFencesโˆฃ,โˆฃvFencesโˆฃโ‰ค6001<hFences[i]<m1<vFences[i]<n\begin{aligned} &3 \le m, n \le 10^9 \\ &1 \le |hFences|, |vFences| \le 600 \\ &1 < hFences[i] < m \\ &1 < vFences[i] < n \end{aligned}
  • All fence positions are unique
  • Boundary fences cannot be removed
โ€” Written by Saurabh Patil โ€ข B.Tech CSE โ€ข Software Developer

Categories
geometry
maths
sets
leetcode-problem-of-the-day
java
Reference Link
https://leetcode.com/problems/maximum-square-area-by-removing-fences-from-a-field/

Loading component...

Starter Code
Test, modify, or copy the starter code. Click "Visualize" to import into the canvas.
Java
Output:
Understood Algorithm, Test Me now ๐ŸŽฎ

๐ŸŽฏ Select Challenge to activate

๐Ÿง  Logic Puzzle
Think & Arrange, Don't Just Copy-Paste

Drag and arrange the algorithm steps in the correct execution order instead of spending time typing code letter by letter.

Arrange the Algorithm Correctly ๐Ÿงฉ

The algorithm is divided into three logical parts. Carefully rearrange each section in the correct order to form a complete and valid solution.

Understand Below Algorithm

Don't Know Current Algorithm ? ย 

Green text means the instruction is placed in the correct position.

Red text means the instruction is in the wrong position.

Block Colors

Instructions with the same background color indicate particular blocks start and end.

A tick mark means the instruction is correct and locked.

๐Ÿ”’ Locked steps cannot be moved. Only unlocked steps are draggable.

๐Ÿ”Š Enable sound for swap feedback and completion effects.

DrawToCode โ€” Visualize, Practice & Master Algorithms

Learn data structures and algorithms through interactive visualizations. Practice coding problems, track your progress, and understand concepts deeply.

Visualization Boardย |ย Problemsย |ย Aboutย |ย Privacy Policy
EmailLinkedInTwitterInstagramGitHub
ยฉ 2026 DrawToCode. All rights reserved.