-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1337-kWeakestRows.go
66 lines (61 loc) · 1.18 KB
/
1337-kWeakestRows.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// https://leetcode-cn.com/problems/the-k-weakest-rows-in-a-matrix/
package main
import "fmt"
func kWeakestRows(mat [][]int, k int) []int {
ret := []int{}
row := len(mat)
col := len(mat[0])
for i := 0; i < col; i++ {
for j := 0; j < row; j++ {
if mat[j][i] == 0 && (i == 0 || (i > 0 && mat[j][i-1] == 1)) {
ret = append(ret, j)
if len(ret) >= k {
return ret
}
}
}
if i == col-1 {
for j := 0; j < row; j++ {
if mat[j][i] == 1 {
ret = append(ret, j)
if len(ret) >= k {
return ret
}
}
}
}
}
return ret
}
func main() {
mat1 := [][]int{
{1, 1, 0, 0, 0},
{1, 1, 1, 1, 0},
{1, 0, 0, 0, 0},
{1, 1, 0, 0, 0},
{1, 1, 1, 1, 1},
}
mat2 := [][]int{
{1, 0, 0, 0},
{1, 1, 1, 1},
{1, 0, 0, 0},
{1, 0, 0, 0},
}
mat3 := [][]int{
{1, 1, 1, 1, 1, 1},
{1, 1, 1, 1, 1, 1},
{1, 1, 1, 1, 1, 1},
}
mat4 := [][]int{
{1, 1, 1, 1, 1},
{1, 0, 0, 0, 0},
{1, 1, 0, 0, 0},
{1, 1, 1, 1, 0},
{1, 1, 1, 1, 1},
}
k := []int{3, 2, 1, 3}
fmt.Println("ret:", kWeakestRows(mat1, k[0]))
fmt.Println("ret:", kWeakestRows(mat2, k[1]))
fmt.Println("ret:", kWeakestRows(mat3, k[2]))
fmt.Println("ret:", kWeakestRows(mat4, k[3]))
}