From f4466c9a888766b0a7be2d8ee312895f8e183129 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Sat, 11 Dec 2021 21:02:55 +0100 Subject: [PATCH] day(11): refactor some more Signed-off-by: Matej Focko --- src/year2021/day11/Day11.kt | 33 ++++++++++++++------------------- 1 file changed, 14 insertions(+), 19 deletions(-) diff --git a/src/year2021/day11/Day11.kt b/src/year2021/day11/Day11.kt index a69108e..d56a1c9 100644 --- a/src/year2021/day11/Day11.kt +++ b/src/year2021/day11/Day11.kt @@ -1,7 +1,6 @@ package year2021.day11 import readInput -import kotlin.collections.ArrayDeque fun validAdjacentIndices(input: List>, y0: Int, x0: Int): Iterable> = (y0 - 1..y0 + 1) @@ -10,22 +9,20 @@ fun validAdjacentIndices(input: List>, y0: Int, x0: Int): Iterable= 0 && y < input.size) && (x >= 0 && x < input[y].size) } -fun getFlashes(octopuses: MutableList>): List> = - (octopuses.indices) - .flatMap { y -> octopuses[y].indices.map { x -> Pair(y, x) } } - .filter { (y, x) -> octopuses[y][x] > 9 } - .toList() +fun allIndices(octopuses: List>): Iterable> = + octopuses.indices.flatMap { y -> octopuses[y].indices.map { x -> y to x } } -fun step(octopuses: MutableList>): Int { +fun getFlashes(octopuses: List>): Iterable> = + allIndices(octopuses).filter { (y, x) -> octopuses[y][x] > 9 } + +fun step(octopuses: List>): Int { // First, the energy level of each octopus increases by 1. - for (y in octopuses.indices) { - for (x in octopuses.indices) { - octopuses[y][x]++ - } + for ((y, x) in allIndices(octopuses)) { + octopuses[y][x]++ } // Then, any octopus with an energy level greater than 9 flashes. - val queue = ArrayDeque(getFlashes(octopuses)) + val queue = ArrayDeque(getFlashes(octopuses).toList()) while (queue.isNotEmpty()) { val (y, x) = queue.removeFirst() @@ -43,11 +40,9 @@ fun step(octopuses: MutableList>): Int { val flashes = octopuses.sumOf { row -> row.count { it > 9 } } // Reset energy level. - for (y in octopuses.indices) { - for (x in octopuses.indices) { - if (octopuses[y][x] > 9) { - octopuses[y][x] = 0 - } + for ((y, x) in allIndices(octopuses)) { + if (octopuses[y][x] > 9) { + octopuses[y][x] = 0 } } @@ -55,12 +50,12 @@ fun step(octopuses: MutableList>): Int { } fun part1(input: List>): Int { - val octopuses = input.map { row -> row.toMutableList() }.toMutableList() + val octopuses = input.map { row -> row.toMutableList() } return (1..100).sumOf { step(octopuses) } } fun part2(input: List>): Int { - val octopuses = input.map { row -> row.toMutableList() }.toMutableList() + val octopuses = input.map { row -> row.toMutableList() } val count = octopuses.size * octopuses[0].size return (1..Int.MAX_VALUE).first { step(octopuses) == count } }