search
HomeBackend DevelopmentPHP TutorialFirst Completely Painted Row or Column

2661. First Completely Painted Row or Column

Difficulty: Medium

Topics: Array, Hash Table, Matrix

You are given a 0-indexed integer array arr, and an m x n integer matrix mat. arr and mat both contain all the integers in the range [1, m * n].

Go through each index i in arr starting from index 0 and paint the cell in mat containing the integer arr[i].

Return the smallest index i at which either a row or a column will be completely painted in mat.

Example 1:

First Completely Painted Row or Column

  • Input: arr = [1,3,4,2], mat = [[1,4],[2,3]]
  • Output: 2
  • Explanation: The moves are shown in order, and both the first row and second column of the matrix become fully painted at arr[2].

Example 2:

First Completely Painted Row or Column

  • Input: arr = [2,8,7,4,1,3,5,6,9], mat = [[3,2,5],[1,4,6],[8,7,9]]
  • Output: 3
  • Explanation: The second column becomes fully painted at arr[3].

Constraints:

  • m == mat.length
  • n = mat[i].length
  • arr.length == m * n
  • 1 5
  • 1 5
  • 1
  • All the integers of arr are unique.
  • All the integers of mat are unique.

Hint:

  1. Can we use a frequency array?
  2. Pre-process the positions of the values in the matrix.
  3. Traverse the array and increment the corresponding row and column frequency using the pre-processed positions.
  4. If the row frequency becomes equal to the number of columns, or vice-versa return the current index.

Solution:

We can follow these steps:

Approach

  1. Pre-process the positions of elements:

    • First, we need to store the positions of the elements in the matrix. We can create a dictionary (position_map) that maps each value in the matrix to its (row, col) position.
  2. Frequency Arrays:

    • We need two frequency arrays: one for the rows and one for the columns.
    • As we go through the arr array, we will increment the frequency of the respective row and column for each element.
  3. Check for Complete Row or Column:

    • After each increment, check if any row or column becomes completely painted (i.e., its frequency reaches the size of the matrix's columns or rows).
    • If so, return the current index.
  4. Return the result:

    • The index where either a row or column is fully painted is our answer.

Detailed Steps

  1. Create a map position_map for each value in mat to its (row, col) position.
  2. Create arrays row_count and col_count to track the number of painted cells in each row and column.
  3. Traverse through arr and for each element, update the respective row and column counts.
  4. If at any point a row or column is completely painted, return that index.

Let's implement this solution in PHP: 2661. First Completely Painted Row or Column

<?php /**
 * @param Integer[] $arr
 * @param Integer[][] $mat
 * @return Integer
 */
function firstCompleteIndex($arr, $mat) {
    ...
    ...
    ...
    /**
     * go to ./solution.php
     */
}

// Example usage:
$arr = [1, 3, 4, 2];
$mat = [[1, 4], [2, 3]];
echo firstCompleteIndex($arr, $mat); // Output: 2

$arr = [2, 8, 7, 4, 1, 3, 5, 6, 9];
$mat = [[3, 2, 5], [1, 4, 6], [8, 7, 9]];
echo firstCompleteIndex($arr, $mat); // Output: 3
?>

Explanation:

  1. Pre-processing positions:

    • We build a dictionary position_map where each value in mat is mapped to its (row, col) position. This helps in directly accessing the position of any value in constant time during the traversal of arr.
  2. Frequency counts:

    • We initialize row_count and col_count arrays with zeros. These arrays will keep track of how many times a cell in a specific row or column has been painted.
  3. Traversing the array:

    • For each value in arr, we look up its position in position_map, then increment the corresponding row and column counts.
    • After updating the counts, we check if any row or column has reached its full size (i.e., row_count[$row] == n or col_count[$col] == m). If so, we return the current index i.
  4. Return Result:

    • The first index where either a row or column is completely painted is returned.

Time Complexity:

  • Pre-processing: We build position_map in O(m * n).
  • Traversal: We process each element of arr (which has a length of m * n), and for each element, we perform constant-time operations to update and check the row and column frequencies, which takes O(1) time.
  • Overall, the time complexity is O(m * n).

Space Complexity:

  • We store the positions of all elements in position_map, and we use O(m n) space for the frequency arrays. Therefore, the space complexity is O(m * n).

This solution should efficiently handle the problem within the given constraints.

Contact Links

If you found this series helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks ?. Your support would mean a lot to me!

If you want more helpful content like this, feel free to follow me:

  • LinkedIn
  • GitHub

The above is the detailed content of First Completely Painted Row or Column. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

HTTP Method Verification in LaravelHTTP Method Verification in LaravelMar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use