-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathSolution.kt
50 lines (41 loc) · 1.44 KB
/
Solution.kt
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
/**
* Created by Inno Fang on 2018/2/20.
*/
/**
* 277 / 277 test cases passed.
* Status: Accepted
* Runtime: 292 ms
*/
class Solution {
val direct = arrayOf(intArrayOf(1, 0), intArrayOf(0, 1), intArrayOf(-1, 0), intArrayOf(0, -1))
fun floodFill(image: Array<IntArray>, sr: Int, sc: Int, newColor: Int): Array<IntArray> {
if (image[sr][sc] == newColor) return image
dfs(image, sr, sc, image[sr][sc], newColor)
return image
}
private fun dfs(image: Array<IntArray>, sr: Int, sc: Int, srcColor: Int, newColor: Int) {
image[sr][sc] = newColor
(0 until 4).forEach { i ->
val newX = sr + direct[i][0]
val newY = sc + direct[i][1]
if (newX in (0 until image.size) && newY in (0 until image[0].size) // is in area
&& image[newX][newY] == srcColor) {
floodFill(image, newX, newY, newColor)
}
}
}
}
fun main(args: Array<String>) {
Solution().floodFill(arrayOf(
intArrayOf(1, 1, 1),
intArrayOf(1, 1, 0),
intArrayOf(1, 0, 1)
), 1, 1, 2).forEach(::arrayFormat).let(::newLine)
Solution().floodFill(arrayOf(
intArrayOf(0, 0, 0),
intArrayOf(0, 1, 1)
), 1, 1, 1).forEach(::arrayFormat).let(::newLine)
}
fun arrayFormat(args: IntArray) = args.forEach(::format).let(::newLine)
fun format(args: Any) = print("$args ")
fun newLine(args: Any) = println()