aboutsummaryrefslogtreecommitdiff
path: root/src/2020/day7/aoc.h
blob: 3ad7539356b488db0a06e339e4210c22ad0b3584 (plain)
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
#pragma once
#include "common.h"
#include <unordered_map>
#include <vector>

namespace aoc2020 {

struct color_bag {
  line_view color;
  std::vector<std::pair<color_bag*, int>> bags;
};

struct bag_regulations {
  std::unordered_map<line_view, color_bag*> regulations;

  void get_number(const char** pp, int* d) {
    const char* p = *pp;
    *d = 0;
    while (*p >= '0' && *p <= '9') {
      *d = *d * 10 + *p - '0';
      p++;
    }
    *pp = p;
  }

  std::pair<color_bag*, int> get_bag(const char* p1, const char* p2) {
    int d{0};
    get_number(&p1, &d);
    line_view color = {d > 0 ? p1 + 1 : p1, *(p2 - 1) == 's' ? p2 - 5 : p2 - 4};
    color_bag* bag = nullptr;
    auto it = regulations.find(color);
    if (it == regulations.end()) {
      bag = new color_bag{color, {}};
      regulations.insert({color, bag});
    } else {
      bag = it->second;
    }
    return {bag, d};
  }

  void parse(line_view lv) {
    const char* p1 = lv.line;
    const char* p2 = lv.line + lv.length;
    const char* p = lv.contains("contain");
    auto pa1 = get_bag(p1, p - 1);
    p1 = p + 8;
    p = p1;
    while (p < p2) {
      if (*p == ',' || *p == '.') {
        pa1.first->bags.push_back(get_bag(p1, p));
        p1 = p + 2;
      }
      p++;
    }
  }
};

std::pair<int, int> day7(line_view, const char*);
} // namespace aoc2020