Problem Description
You are given a m x n 0-indexed 2D matrix mat. From every cell, you can create numbers by traversing in one of the 8 possible directions. You need to return the most frequent prime number greater than 10 from all the numbers formed, or -1 if no such prime exists. If there are multiple prime numbers with the highest frequency, return the largest among them.
Key Insights
- You can generate numbers by traversing in 8 possible directions from each cell.
- Numbers are created progressively as you append digits during traversal.
- Only prime numbers greater than 10 are of interest.
- Efficient prime checking and counting are necessary due to potentially large numbers formed.
- The algorithm must handle cells in a matrix with dimensions up to 6x6.
Space and Time Complexity
Time Complexity: O(m * n * k), where k is the maximum length of numbers generated from any cell. Space Complexity: O(p), where p is the number of unique prime numbers found in the results.
Solution
The solution involves the following steps:
- Define the possible directions for traversal.
- For each cell in the matrix, generate numbers by traversing in each of the 8 directions.
- Use a hashmap to count the frequency of each prime number greater than 10.
- Check if a number is prime using a helper function.
- After processing all cells, determine the most frequent prime number, considering ties by selecting the largest prime.