Problem Description
You are given a n x n 2D array grid containing distinct elements in the range [0, n^2 - 1]. Implement the NeighborSum class with methods to calculate the sum of adjacent and diagonal neighbors of a given value.
Key Insights
- The grid is a square matrix (n x n) with distinct values.
- Neighbors are defined based on their relative positions: adjacent neighbors are directly up, down, left, or right, while diagonal neighbors are at the corners surrounding a value.
- Efficient access to neighbor sums requires knowing the position of each value in the grid.
Space and Time Complexity
Time Complexity: O(1) for both adjacentSum and diagonalSum after O(n^2) for initialization.
Space Complexity: O(n^2) for storing the grid and a mapping of values to their coordinates.
Solution
To solve the problem, we can use a 2D array to represent the grid and a hash table (dictionary) to map each value to its coordinates. The methods adjacentSum and diagonalSum will use these coordinates to calculate the sums by checking the valid indices for neighbors based on the predefined directions.