generated from kotlin-hands-on/advent-of-code-kotlin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7d3de2c
commit 69bd002
Showing
1 changed file
with
114 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
import java.util.* | ||
|
||
fun main() { | ||
|
||
data class Gap( | ||
val index: Int, | ||
val count: Int, | ||
) { | ||
val end = index + count - 1 | ||
|
||
fun fillFirstCell() = fillNCell(1) | ||
fun fillNCell(n: Int) = Gap(index = index + n, count = count - n) | ||
} | ||
|
||
data class File( | ||
val id: Int, | ||
val index: Int, | ||
val count: Int, | ||
) { | ||
val end = index + count - 1 | ||
|
||
fun emptyLastCell() = File(id = id, index = index, count = count - 1) | ||
} | ||
|
||
fun String.toDisk(): Triple<Array<Int>, LinkedList<File>, LinkedList<Gap>> { | ||
val length = fold(0) { acc, c -> acc + c.digitToInt() } | ||
val arr = Array(size = length) { 0 } | ||
val gaps = LinkedList<Gap>() | ||
val files = LinkedList<File>() | ||
var isFile = true | ||
var index = 0 | ||
var label = 0 | ||
forEach { c -> | ||
val num = if (isFile) label++ else -1 | ||
isFile = !isFile | ||
val count = c.digitToInt() | ||
if (num == -1 && count > 0) gaps.add(Gap(index = index, count = count)) | ||
if (num >= 0) files.add(File(id = num, index = index, count = count)) | ||
repeat(count) { | ||
arr[index++] = num | ||
} | ||
} | ||
return Triple(arr, files, gaps) | ||
} | ||
|
||
class DiskManager( | ||
private val disk: Array<Int>, | ||
private val files: LinkedList<File>, | ||
private val gaps: LinkedList<Gap>, | ||
) { | ||
|
||
fun fillGapsFromEnd() { | ||
while (gaps.isNotEmpty()) { | ||
val firstGap = gaps.first() | ||
val lastFile = files.last | ||
if (firstGap.index >= lastFile.index) return | ||
|
||
disk[firstGap.index] = lastFile.id | ||
disk[lastFile.end] = -1 | ||
gaps.removeFirst() | ||
firstGap.fillFirstCell().also { | ||
if (it.count > 0) gaps.addFirst(it) | ||
} | ||
files.removeLast() | ||
lastFile.emptyLastCell().also { | ||
if (it.count > 0) files.addLast(it) | ||
} | ||
} | ||
} | ||
|
||
fun fillGapsWithWholeFilesFromEnd() { | ||
for (file in files.reversed()) { | ||
val firstPossibleGapIndex = gaps.indexOfFirst { it.count >= file.count && it.end < file.index } | ||
val firstPossibleGap = gaps.getOrNull(firstPossibleGapIndex) ?: continue | ||
repeat(file.count) { | ||
disk[firstPossibleGap.index + it] = file.id | ||
disk[file.index + it] = -1 | ||
} | ||
gaps.removeAt(firstPossibleGapIndex) | ||
firstPossibleGap.fillNCell(file.count).also { | ||
if (it.count > 0) gaps.add(firstPossibleGapIndex, it) | ||
} | ||
} | ||
} | ||
|
||
fun checksumOfOrderedDisk(): Long { | ||
return disk.foldIndexed(0L) { index, acc, id -> | ||
acc + if (id == -1) 0 else id * index | ||
} | ||
} | ||
} | ||
|
||
fun part1(input: List<String>): Long { | ||
val (disk, files, gaps) = input[0].toDisk() | ||
return DiskManager(disk = disk, files = files, gaps = gaps) | ||
.apply { fillGapsFromEnd() } | ||
.checksumOfOrderedDisk() | ||
} | ||
|
||
fun part2(input: List<String>): Long { | ||
val (disk, files, gaps) = input[0].toDisk() | ||
return DiskManager(disk = disk, files = files, gaps = gaps) | ||
.apply { fillGapsWithWholeFilesFromEnd() } | ||
.checksumOfOrderedDisk() | ||
} | ||
|
||
val testInput1 = readInput("Day09_test") | ||
check(part1(testInput1) == 1928L) | ||
check(part2(testInput1) == 2858L) | ||
|
||
val input = readInput("Day09") | ||
part1(input).println() | ||
part2(input).println() | ||
} |