advent-of-code

advent of code attempts
git clone git://bvnf.space/advent-of-code.git
Log | Files | Refs

a.c (5059B)


      1
      2
      3
      4
      5
      6
      7
      8
      9
     10
     11
     12
     13
     14
     15
     16
     17
     18
     19
     20
     21
     22
     23
     24
     25
     26
     27
     28
     29
     30
     31
     32
     33
     34
     35
     36
     37
     38
     39
     40
     41
     42
     43
     44
     45
     46
     47
     48
     49
     50
     51
     52
     53
     54
     55
     56
     57
     58
     59
     60
     61
     62
     63
     64
     65
     66
     67
     68
     69
     70
     71
     72
     73
     74
     75
     76
     77
     78
     79
     80
     81
     82
     83
     84
     85
     86
     87
     88
     89
     90
     91
     92
     93
     94
     95
     96
     97
     98
     99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>

#define HEIGHT 41//5
#define WIDTH  171//8

struct point {
    int x, y;
};

struct nodel {
    int dist;
    struct point p;
    struct nodel *next;
};

struct nodel *nodetop = NULL;
int grid[HEIGHT][WIDTH] = {0};

/* insert a node for dist and p so that nodetop is sorted */
void
node_push(int dist, struct point p) {
    struct nodel *n = malloc(sizeof(struct nodel));
    if (n == NULL) {
        perror("malloc");
        exit(1);
    }
    n->dist = dist;
    n->p.x = p.x;
    n->p.y = p.y;

    struct nodel *t = nodetop;
    if (t == NULL || t->dist < dist) {
        n->next = t;
        nodetop = n;
        return;
    }
    for (; t != NULL; t = t->next) {
        /* If anyone ever reads this, can you explain why part 2 requires `>=` and not `>`? Please tell me! */
        if (t->next == NULL || t->next->dist >= dist) {
            n->next = t->next;
            t->next = n;
            break;
        }
    }
}

struct nodel *
node_pop(void) {
    struct nodel *n = nodetop;
    if (n != NULL)
        nodetop = n->next;
    return n;
}

void
push_if_valid(int dist, int x, int y, int curheight, char partB) {
    if (x < 0 || x >= WIDTH || y < 0 || y >= HEIGHT)
        return;
    struct point p = {x, y};
    if (partB == 0) {
        if (grid[y][x] <= curheight + 1)
            node_push(dist, p);
    } else {
        if (curheight <= grid[y][x] + 1)
            node_push(dist, p);
    }
}

int
main(int argc, char **argv) {
    char *buf = NULL;
    size_t buflen = 0;
    ssize_t n;
    FILE *f;
    struct point start, end;

    int visited[HEIGHT][WIDTH] = {0};

    nodetop = NULL;

    if (argc != 2) {
        fprintf(stderr, "usage: %s input\n", argv[0]);
        return 1;
    }

    f = fopen(argv[1], "r");
    if (f == NULL) {
        perror(argv[1]);
        return 1;
    }

    size_t row = 0;
    while ((n = getline(&buf, &buflen, f)) != -1) {
        if (buf[n - 1] == '\n') {
            buf[n - 1] = '\0';
            n--;
        }
        assert(n == WIDTH);
        for (ssize_t i = 0; i < n; i++) {
            switch (buf[i]) {
                case 'S':
                    start.x = i;
                    start.y = row;
                    buf[i] = 'a';
                    break;
                case 'E':
                    end.x = i;
                    end.y = row;
                    buf[i] = 'z';
                    break;
            }
            grid[row][i] = buf[i] - 'a';
        }
        row++;
    }

    free(buf);
    fclose(f);

    printf("start at (%d,%d)\nend at (%d,%d)\n", start.x, start.y, end.x, end.y);

    for (int i = 0; i < HEIGHT; i++) {
        for (int j = 0; j < WIDTH; j++)
            printf("%c", grid[i][j] + 'a');
        printf("\n");
    }

    node_push(0, start);
    struct nodel *endpath;

    while (1) {
        struct nodel *n = node_pop();
        if (n == NULL) {
            fprintf(stderr, "reached end of node list.\n");
            exit(1);
        }
        if (visited[n->p.y][n->p.x]) {
            goto cont;
        }
        visited[n->p.y][n->p.x] = 1;
        //fprintf(stderr, "%d,%d = %d\n", n->p.x, n->p.y, n->dist);
        
        if (n->p.x == end.x && n->p.y == end.y) {
            endpath = n;
            break;
        }

        int curheight = grid[n->p.y][n->p.x];
        push_if_valid(n->dist + 1, n->p.x - 1, n->p.y, curheight, 0);
        push_if_valid(n->dist + 1, n->p.x + 1, n->p.y, curheight, 0);
        push_if_valid(n->dist + 1, n->p.x, n->p.y - 1, curheight, 0);
        push_if_valid(n->dist + 1, n->p.x, n->p.y + 1, curheight, 0);

cont:
        free(n);
    }

    printf("Part A: %d\n", endpath->dist);
    free(endpath);

    /* reset for part B */
    while (node_pop() != NULL) ;
    for (int y = 0; y < HEIGHT; y++)
        for (int x = 0; x < WIDTH; x++)
            visited[y][x] = 0;
    nodetop = NULL;

    /* This time start from the end and find the closest point of elevation a */
    /* Have to reverse the neighbour selection rule so that going from lowest
     * to end will still be possible. */
    node_push(0, end);
    while (1) {
        struct nodel *n = node_pop();
        if (n == NULL) {
            fprintf(stderr, "reached end of node list.\n");
            exit(1);
        }
        if (visited[n->p.y][n->p.x]) {
            goto contB;
        }
        visited[n->p.y][n->p.x] = 1;
        //fprintf(stderr, "%d,%d = %d\n", n->p.x, n->p.y, n->dist);
        
        int curheight = grid[n->p.y][n->p.x];
        if (curheight == 0) {
            endpath = n;
            break;
        }

        push_if_valid(n->dist + 1, n->p.x - 1, n->p.y, curheight, 1);
        push_if_valid(n->dist + 1, n->p.x + 1, n->p.y, curheight, 1);
        push_if_valid(n->dist + 1, n->p.x, n->p.y - 1, curheight, 1);
        push_if_valid(n->dist + 1, n->p.x, n->p.y + 1, curheight, 1);

contB:
        free(n);
    }

    printf("Part B: %d (%d,%d)\n", endpath->dist, endpath->p.x, endpath->p.y);
    free(endpath);

    return 0;
}