2019 day 09: parts 1 & 2

This commit is contained in:
2022-10-04 22:04:50 +02:00
parent 1cfd1c81f0
commit bd851b6524
3 changed files with 82 additions and 104 deletions

View File

@@ -116,3 +116,17 @@ aoc-c : res=2250
aoc-c : res=0 aoc-c : res=0
time: 0:00.00 real, 0.00 user, 0.00 sys time: 0:00.00 real, 0.00 user, 0.00 sys
context-switch: 0+1, page-faults: 0+90 context-switch: 0+1, page-faults: 0+90
=========================================
================= day09 =================
=========================================
+++++++++++++++++ part 1
aoc-c : res=2682107844
time: 0:00.00 real, 0.00 user, 0.00 sys
context-switch: 0+1, page-faults: 0+92
+++++++++++++++++ part 2
aoc-c : res=34738
time: 0:00.01 real, 0.01 user, 0.00 sys
context-switch: 1+1, page-faults: 0+95

View File

@@ -72,10 +72,23 @@ report no malfunctioning opcodes when run in test mode; it should only
output a single value, the BOOST keycode. /What BOOST keycode does it output a single value, the BOOST keycode. /What BOOST keycode does it
produce?/ produce?/
To begin, [[file:9/input][get your puzzle input]]. Your puzzle answer was =2682107844=.
Answer: ** --- Part Two ---
/You now have a complete Intcode computer./
You can also [Shareon Finally, you can lock on to the Ceres distress signal! You just need to
[[https://twitter.com/intent/tweet?text=%22Sensor+Boost%22+%2D+Day+9+%2D+Advent+of+Code+2019&url=https%3A%2F%2Fadventofcode%2Ecom%2F2019%2Fday%2F9&related=ericwastl&hashtags=AdventOfCode][Twitter]] boost your sensors using the BOOST program.
[[javascript:void(0);][Mastodon]]] this puzzle.
The program runs in sensor boost mode by providing the input instruction
the value =2=. Once run, it will boost the sensors automatically, but it
might take a few seconds to complete the operation on slower hardware.
In sensor boost mode, the program will output a single value: /the
coordinates of the distress signal/.
Run the BOOST program in sensor boost mode. /What are the coordinates of
the distress signal?/
Your puzzle answer was =34738=.
Both parts of this puzzle are complete! They provide two gold stars: **

View File

@@ -21,6 +21,8 @@
#include "list.h" #include "list.h"
#include "pool.h" #include "pool.h"
#define _unused __attribute__((unused))
/* operators codes /* operators codes
*/ */
typedef enum { typedef enum {
@@ -42,17 +44,18 @@ typedef struct {
u8 length; u8 length;
} ops_t; } ops_t;
typedef struct input { typedef struct io {
s64 val; s64 val;
struct list_head list; struct list_head list;
} input_t; } io_t;
#define MAXOPS 1024 #define MAXOPS 2048
typedef struct { typedef struct {
int length; /* total program length */ s64 length; /* total program length */
int cur; /* current instruction */ s64 cur; /* current instruction */
int rel; /* current relative memory */ s64 rel; /* current relative memory */
struct list_head input; /* process input queue */ struct list_head input; /* process input queue */
struct list_head output; /* process output queue */
s64 mem [MAXOPS]; /* should really be dynamic */ s64 mem [MAXOPS]; /* should really be dynamic */
} program_t; } program_t;
@@ -87,109 +90,83 @@ static inline param_t paramtype(program_t *prg, int addr, int param)
#define ISDIRECT(p, n, i) ((((p->mem[n]) / _flag_pow10[i]) % 10) == 1) #define ISDIRECT(p, n, i) ((((p->mem[n]) / _flag_pow10[i]) % 10) == 1)
#define DIRECT(p, i) ((p)->mem[i]) #define DIRECT(p, i) ((p)->mem[i])
#define INDIRECT(p, i) (DIRECT(p, DIRECT(p, i))) #define INDIRECT(p, i) (DIRECT(p, DIRECT(p, i)))
#define RELATIVE(p, i) (DIRECT(p , p->rel + DIRECT(p, i)))
static inline s64 peek(program_t *prg, int cur, int param) static inline s64 peek(program_t *prg, s64 cur, s64 param)
{ {
param_t partype = paramtype(prg, cur, param); switch(paramtype(prg, cur, param)) {
//printf("partype=%d\n", partype);
switch(partype) {
case DIR: case DIR:
return DIRECT(prg, cur + param); return DIRECT(prg, cur + param);
case IND: case IND:
return INDIRECT(prg, cur + param); return INDIRECT(prg, cur + param);
case REL: case REL:
return INDIRECT(prg, cur + prg->rel + param); return RELATIVE(prg, cur + param);
} }
return 0; /* not reached */ return 0; /* not reached */
} }
static inline void poke(program_t *prg, int cur, int param, s64 val) static inline void poke(program_t *prg, int cur, int param, s64 val)
{ {
switch(paramtype(prg, cur, param)) {
param_t partype = paramtype(prg, cur, param);
//printf("partype=%d\n", partype);
switch(partype) {
case DIR:
printf("should not happen here\n");
break;
// DIRECT(prg, cur + param);
case IND: case IND:
INDIRECT(prg, cur + param) = val; INDIRECT(prg, cur + param) = val;
case DIR: /* never happens */
break; break;
case REL: case REL:
INDIRECT(prg, cur + prg->rel + param) = val; RELATIVE(prg, cur + param) = val;
} }
} }
//#define peek(p, n, i) (ISDIRECT(p, n, i)? DIRECT(p, n + i): INDIRECT(p, n + i)) static pool_t *pool_io;
/*
#define poke(p, n, i, val) do { \
INDIRECT(p, n + i) = val; } \
while (0)
*/
static pool_t *pool_input; static __always_inline int prg_add_input(program_t *prg, s64 in)
static __always_inline s64 prg_add_input(program_t *prg, s64 in)
{ {
input_t *input = pool_get(pool_input); io_t *input = pool_get(pool_io);
input->val = in; input->val = in;
list_add_tail(&input->list, &prg->input); list_add_tail(&input->list, &prg->input);
return in; return in;
} }
static __always_inline s64 prg_get_input(program_t *prg, s64 *out) static __always_inline s64 prg_add_output(program_t *prg, s64 out)
{ {
input_t *input = list_first_entry_or_null(&prg->input, input_t, list); io_t *output = pool_get(pool_io);
output->val = out;
list_add_tail(&output->list, &prg->output);
return out;
}
static __always_inline int prg_get_input(program_t *prg, s64 *in)
{
io_t *input = list_first_entry_or_null(&prg->input, io_t, list);
if (!input) if (!input)
return 0; return 0;
*out = input->val; *in = input->val;
list_del(&input->list); list_del(&input->list);
pool_add(pool_input, input); pool_add(pool_io, input);
return 1; return 1;
} }
/** static __always_inline _unused int prg_get_output(program_t *prg, s64 *out)
* permute - get next permutation of an array of integers
* @len: length of array
* @array: address of array
*
* Algorithm: lexicographic permutations
* https://en.wikipedia.org/wiki/Permutation#Generation_in_lexicographic_order
* Before the initial call, the array must be sorted (e.g. 0 2 3 5)
*
* Return: 1 if next permutation was found, 0 if no more permutation.
*
*/
static int permute_next(int len, int *array)
{ {
int k, l; io_t *output = list_first_entry_or_null(&prg->output, io_t, list);
if (!output)
/* 1. Find the largest index k such that a[k] < a[k + 1] */
for (k = len - 2; k >= 0 && array[k] >= array[k + 1]; k--)
;
/* No more permutations */
if (k < 0)
return 0; return 0;
/* 2. Find the largest index l greater than k such that a[k] < a[l] */ *out = output->val;
for (l = len - 1; array[l] <= array[k]; l--) list_del(&output->list);
; pool_add(pool_io, output);
/* 3. Swap the value of a[k] with that of a[l] */
swap(array[k], array[l]);
/* 4. Reverse sequence from a[k + 1] up to the final element */
for (l = len - 1, k++; k < l; k++, l--)
swap(array[k], array[l]);
return 1; return 1;
} }
static s64 run(program_t *p, int *end) static s64 run(program_t *p, int *end)
{ {
s64 out = -1, input; s64 out = -1, input, tmp;
while (1) { while (1) {
int cur = p->cur; int cur = p->cur;
opcode_t op = getop(p, p->cur); opcode_t op = getop(p, p->cur);
if (!(ops[op].op)) { if (!(ops[op].op)) {
fprintf(stderr, "PANIC: illegal instruction %d at %d.\n", op, p->cur); fprintf(stderr, "PANIC: illegal instruction %d at %ld.\n", op, p->cur);
return -1; return -1;
} }
switch (op) { switch (op) {
@@ -211,6 +188,7 @@ static s64 run(program_t *p, int *end)
break; break;
case OUT: case OUT:
out = peek(p, p->cur, 1); out = peek(p, p->cur, 1);
prg_add_output(p, out);
break; break;
case JMP_T: case JMP_T:
if (peek(p, p->cur, 1)) if (peek(p, p->cur, 1))
@@ -253,19 +231,14 @@ static int usage(char *prg)
int main(int ac, char **av) int main(int ac, char **av)
{ {
int phase1[] = {0, 1, 2, 3, 4}, phase2[] = {5, 6, 7, 8, 9}, *phase; int opt, end = 0, part = 1;
int opt, max = 0, part = 1; program_t p = { 0 };
program_t p = { 0 }, prg[5];
while ((opt = getopt(ac, av, "d:p:o:")) != -1) { while ((opt = getopt(ac, av, "d:p:")) != -1) {
switch (opt) { switch (opt) {
case 'd': case 'd':
debug_level_set(atoi(optarg)); debug_level_set(atoi(optarg));
break; break;
case 'o':
for (ulong i = 0; i < strlen(optarg); ++i)
phase1[i] = optarg[i] - '0';
break;
case 'p': /* 1 or 2 */ case 'p': /* 1 or 2 */
part = atoi(optarg); part = atoi(optarg);
if (part < 1 || part > 2) if (part < 1 || part > 2)
@@ -276,39 +249,17 @@ int main(int ac, char **av)
} }
} }
pool_input = pool_create("input", 128, sizeof(input_t)); pool_io = pool_create("i/o", 128, sizeof(io_t));
if (optind < ac) if (optind < ac)
return usage(*av); return usage(*av);
phase = part == 1? phase1: phase2;
parse(&p); parse(&p);
INIT_LIST_HEAD(&p.input);
INIT_LIST_HEAD(&p.output);
prg_add_input(&p, part);
do { printf("%s : res=%ld\n", *av, run(&p, &end));
int out = 0, end = 0; pool_destroy(pool_io);
/* reset programs initial state, and add phase to their input
*/
for (unsigned i = 0; i < ARRAY_SIZE(prg); ++i) {
prg[i] = p;
INIT_LIST_HEAD(&prg[i].input);
prg_add_input(&prg[i], phase[i]);
}
/* run the 5 processes in order (0, 1, 2, 3, 4, 0, 1, etc...),
* until end flag is set by the process 4 (HLT instruction)
*/
while (!end) {
for (int i = 0; i < 5; ++i) {
/* add last process output in current process input queue
*/
prg_add_input(&prg[i], out);
out = run(&prg[i], &end);
}
}
max = max(max, out);
} while (permute_next(5, phase));
printf("%s : res=%d\n", *av, max);
pool_destroy(pool_input);
exit(0); exit(0);
} }