Skip to content

Commit c044893

Browse files
authored
Merge pull request #1099 from 0xff-dev/2661
Add solution and test-cases for problem 2661
2 parents 9eedcd7 + 0dbc191 commit c044893

File tree

5 files changed

+63
-12
lines changed

5 files changed

+63
-12
lines changed
Loading
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# [2661.First Completely Painted Row or Column][title]
2+
3+
## Description
4+
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]`.
5+
6+
Go through each index `i` in `arr` starting from index `0` and paint the cell in `mat` containing the integer `arr[i]`.
7+
8+
Return the smallest index `i` at which either a row or a column will be completely painted in `mat`.
9+
10+
**Example 1:**
11+
12+
![1](./1.jpg)
13+
14+
```
15+
Input: arr = [1,3,4,2], mat = [[1,4],[2,3]]
16+
Output: 2
17+
Explanation: The moves are shown in order, and both the first row and second column of the matrix become fully painted at arr[2].
18+
```
19+
20+
**EXample 2:**
21+
22+
![2](./2.jpg)
23+
24+
```
25+
Input: arr = [2,8,7,4,1,3,5,6,9], mat = [[3,2,5],[1,4,6],[8,7,9]]
26+
Output: 3
27+
Explanation: The second column becomes fully painted at arr[3].
28+
```
29+
30+
## 结语
31+
32+
如果你同我一样热爱数据结构、算法、LeetCode,可以关注我 GitHub 上的 LeetCode 题解:[awesome-golang-algorithm][me]
33+
34+
[title]: https://leetcode.com/problems/first-completely-painted-row-or-column
35+
[me]: https://github.com/kylesliu/awesome-golang-algorithm
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
package Solution
22

3-
func Solution(x bool) bool {
4-
return x
3+
func Solution(arr []int, mat [][]int) int {
4+
m, n := len(mat), len(mat[0])
5+
rows, cols := make([]int, m), make([]int, n)
6+
key := make(map[int][2]int)
7+
for i := range m {
8+
for j := range n {
9+
key[mat[i][j]] = [2]int{i, j}
10+
}
11+
}
12+
for i := range arr {
13+
pos := key[arr[i]]
14+
rows[pos[0]]++
15+
cols[pos[1]]++
16+
if rows[pos[0]] == n || cols[pos[1]] == m {
17+
return i
18+
}
19+
}
20+
return len(arr) - 1
521
}

leetcode/2601-2700/2661.First-Completely-Painted-Row-or-Column/Solution_test.go

+10-10
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,30 @@ func TestSolution(t *testing.T) {
1010
// 测试用例
1111
cases := []struct {
1212
name string
13-
inputs bool
14-
expect bool
13+
arr []int
14+
mat [][]int
15+
expect int
1516
}{
16-
{"TestCase", true, true},
17-
{"TestCase", true, true},
18-
{"TestCase", false, false},
17+
{"TestCase1", []int{1, 3, 4, 2}, [][]int{{1, 4}, {2, 3}}, 2},
18+
{"TestCase2", []int{2, 8, 7, 4, 1, 3, 5, 6, 9}, [][]int{{3, 2, 5}, {1, 4, 6}, {8, 7, 9}}, 3},
1919
}
2020

2121
// 开始测试
2222
for i, c := range cases {
2323
t.Run(c.name+" "+strconv.Itoa(i), func(t *testing.T) {
24-
got := Solution(c.inputs)
24+
got := Solution(c.arr, c.mat)
2525
if !reflect.DeepEqual(got, c.expect) {
26-
t.Fatalf("expected: %v, but got: %v, with inputs: %v",
27-
c.expect, got, c.inputs)
26+
t.Fatalf("expected: %v, but got: %v, with inputs: %v %v",
27+
c.expect, got, c.arr, c.mat)
2828
}
2929
})
3030
}
3131
}
3232

33-
// 压力测试
33+
// 压力测试
3434
func BenchmarkSolution(b *testing.B) {
3535
}
3636

37-
// 使用案列
37+
// 使用案列
3838
func ExampleSolution() {
3939
}

0 commit comments

Comments
 (0)