| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- // https://adventofcode.com/2024/day/10
- import Core library "io";
- import Core library "range";
- import library "day10_common";
- import library "io_utils";
- class PathsToTop {
- fn Make(terrain: Terrain) -> PathsToTop {
- returned var me: PathsToTop;
- for (y: i32 in Core.Range(43)) {
- for (x: i32 in Core.Range(43)) {
- // TODO: We shouldn't need an explicit cast here.
- me.paths[x][y] =
- if terrain.height[x][y] == 9 then 1 as i64 else 0;
- }
- }
- return var;
- }
- fn AddLevel[ref self: Self](terrain: Terrain, level: i32) -> i64 {
- var total: i64 = 0;
- let adj: array((i32, i32), 4) = ((-1, 0), (0, -1), (1, 0), (0, 1));
- for (y: i32 in Core.Range(43)) {
- for (x: i32 in Core.Range(43)) {
- if (terrain.height[x][y] == level) {
- var paths: i64 = 0;
- // TODO: for ((adj_x: i32, adj_y: i32) in adj) {
- for (i: i32 in Core.Range(4)) {
- let adj_x: i32 = x + adj[i].0;
- let adj_y: i32 = y + adj[i].1;
- if (adj_x >= 0 and adj_x < 43 and
- adj_y >= 0 and adj_y < 43 and
- terrain.height[adj_x][adj_y] == level + 1) {
- paths += self.paths[adj_x][adj_y];
- }
- }
- self.paths[x][y] = paths;
- total += paths;
- }
- }
- }
- return total;
- }
- var paths: array(array(i64, 43), 43);
- }
- fn Run() {
- var terrain: Terrain = Terrain.Read();
- var paths: PathsToTop = PathsToTop.Make(terrain);
- var total: i64;
- for (i: i32 in Core.InclusiveRange(0, 8)) {
- total = paths.AddLevel(terrain, 8 - i);
- }
- PrintInt64(total);
- }
|