✓
Passing This code compiles and runs correctly.
Code
// AoC 2015 Day 13 Part 1 — optimal circular seating (statement example: 330).
// PURE .k end-to-end: match dispatches the two sentence forms (gain vs lose),
// names are interned to indices in a std/string-map, and the DIRECTED happiness
// table is a std/map keyed by (a*16 + b). The seating search is the same
// pure-Koru factorial-base permutation sweep as day 9 (Lehmer decode over
// k in 0..N!), summing each adjacency's mutual happiness; the table is circular
// so the closing edge (last↔first) is added after the linear fold.
// Ledger: EMPTY — table ← std collections, permutation search ← pure Koru.
import std/io
import std/fs
import std/regex
import std/string-map
import std/map
std/string-map:new()
| map names |> std/map:new()
| map happy |> std/fs:read-lines(path: "tests/regression/810_AOC_2015/810_131_day13_part1/input.txt")
! line l |> std/regex:match(l)
| `(?<a>[A-Za-z]+) would gain (?<amt>[0-9]+) happiness units by sitting next to (?<b>[A-Za-z]+).` { a, amt: i64, b } |> std/string-map:get(m: names, k: a)
| value ia |> std/string-map:get(m: names, k: b)
| value ib |> std/map:set(m: happy, k: ia * 16 + ib, v: amt)
| missing |> std/string-map:count(m: names): nb |> std/string-map:set(m: names, k: b, v: nb) |> std/map:set(m: happy, k: ia * 16 + nb, v: amt)
| missing |> std/string-map:count(m: names): na |> std/string-map:set(m: names, k: a, v: na) |> std/string-map:get(m: names, k: b)
| value ib |> std/map:set(m: happy, k: na * 16 + ib, v: amt)
| missing |> std/string-map:count(m: names): nb |> std/string-map:set(m: names, k: b, v: nb) |> std/map:set(m: happy, k: na * 16 + nb, v: amt)
| `(?<a>[A-Za-z]+) would lose (?<amt>[0-9]+) happiness units by sitting next to (?<b>[A-Za-z]+).` { a, amt: i64, b } |> std/string-map:get(m: names, k: a)
| value ia |> std/string-map:get(m: names, k: b)
| value ib |> std/map:set(m: happy, k: ia * 16 + ib, v: 0 - amt)
| missing |> std/string-map:count(m: names): nb |> std/string-map:set(m: names, k: b, v: nb) |> std/map:set(m: happy, k: ia * 16 + nb, v: 0 - amt)
| missing |> std/string-map:count(m: names): na |> std/string-map:set(m: names, k: a, v: na) |> std/string-map:get(m: names, k: b)
| value ib |> std/map:set(m: happy, k: na * 16 + ib, v: 0 - amt)
| missing |> std/string-map:count(m: names): nb |> std/string-map:set(m: names, k: b, v: nb) |> std/map:set(m: happy, k: na * 16 + nb, v: 0 - amt)
| no-match |> std/io:print.ln("BAD: {{ l:s }}")
| done _ |> std/string-map:count(m: names): n |> capture { fact: 1[i64] }
! as fa |> for(1..@as(usize, @intCast(n + 1)))
! each i |> captured { fact: fa.fact * @as(i64, @intCast(i)) }
| captured ff |> capture { best: -999999999[i64] }
! as bo |> for(0..@as(usize, @intCast(ff.fact)))
! each k |> capture { used: 0[i64], prev: -1[i64], first: -1[i64], cost: 0[i64], rem: ff.fact }
! as pa |> for(0..@as(usize, @intCast(n)))
! each pos |> capture { dig: @mod(@divTrunc(@as(i64, @intCast(k)), @divTrunc(pa.rem, @as(i64, @intCast(n)) - @as(i64, @intCast(pos)))), @as(i64, @intCast(n)) - @as(i64, @intCast(pos))), seen: 0[i64], pick: -1[i64] }
! as sa |> for(0..@as(usize, @intCast(n)))
! each j |> captured { pick: sa.pick + @as(i64, @intFromBool(sa.pick == -1 and ((pa.used >> @as(u6, @intCast(j))) & 1) == 0 and sa.seen == sa.dig)) * (@as(i64, @intCast(j)) + 1), seen: sa.seen + (1 - ((pa.used >> @as(u6, @intCast(j))) & 1)) }
| captured pk |> std/map:get(m: happy, k: pa.prev * 16 + pk.pick)
| value fwd |> std/map:get(m: happy, k: pk.pick * 16 + pa.prev)
| value bwd |> captured { used: pa.used | (@as(i64, 1) << @as(u6, @intCast(pk.pick))), prev: pk.pick, first: pa.first + @as(i64, @intFromBool(pa.first == -1)) * (pk.pick + 1), cost: pa.cost + (fwd + bwd) * @as(i64, @intFromBool(pa.prev >= 0)), rem: @divTrunc(pa.rem, @as(i64, @intCast(n)) - @as(i64, @intCast(pos))) }
| missing |> captured { used: pa.used | (@as(i64, 1) << @as(u6, @intCast(pk.pick))), prev: pk.pick, first: pa.first + @as(i64, @intFromBool(pa.first == -1)) * (pk.pick + 1), pa.cost, rem: @divTrunc(pa.rem, @as(i64, @intCast(n)) - @as(i64, @intCast(pos))) }
| missing |> captured { used: pa.used | (@as(i64, 1) << @as(u6, @intCast(pk.pick))), prev: pk.pick, first: pa.first + @as(i64, @intFromBool(pa.first == -1)) * (pk.pick + 1), pa.cost, rem: @divTrunc(pa.rem, @as(i64, @intCast(n)) - @as(i64, @intCast(pos))) }
| captured route |> std/map:get(m: happy, k: route.prev * 16 + route.first)
| value cf |> std/map:get(m: happy, k: route.first * 16 + route.prev)
| value cb |> captured { best: @max(bo.best, route.cost + cf + cb) }
| missing |> captured { best: @max(bo.best, route.cost + cf) }
| missing |> std/map:get(m: happy, k: route.first * 16 + route.prev)
| value cb |> captured { best: @max(bo.best, route.cost + cb) }
| missing |> captured { best: @max(bo.best, route.cost) }
| captured result |> std/io:print.ln("{{ result.best:d }}") |> std/map:free(m: happy) |> std/string-map:free(m: names)
| failed e |> std/io:print.ln("FAILED {{ e:s }}") |> std/map:free(m: happy) |> std/string-map:free(m: names)
| err e |> std/io:print.ln("ERR {{ e:s }}") |> std/string-map:free(m: names)
| err e |> std/io:print.ln("ERR {{ e:s }}")
Supporting Files
Alice would gain 54 happiness units by sitting next to Bob.
Alice would lose 79 happiness units by sitting next to Carol.
Alice would lose 2 happiness units by sitting next to David.
Bob would gain 83 happiness units by sitting next to Alice.
Bob would lose 7 happiness units by sitting next to Carol.
Bob would lose 63 happiness units by sitting next to David.
Carol would lose 62 happiness units by sitting next to Alice.
Carol would gain 60 happiness units by sitting next to Bob.
Carol would gain 55 happiness units by sitting next to David.
David would gain 46 happiness units by sitting next to Alice.
David would lose 7 happiness units by sitting next to Bob.
David would gain 41 happiness units by sitting next to Carol.
Actual
330
Expected output
330
Flows
flow ~new click a branch to expand · @labels scroll to their anchor
new
Test Configuration
MUST_RUN