From 9e4caca9ecc7639e64fc6f669a6d3bf7aefe8c33 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 5 Dec 2021 11:37:53 -0500 Subject: Solve day 5 part 1 --- 2021/day05.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 2021/day05.c (limited to '2021') diff --git a/2021/day05.c b/2021/day05.c new file mode 100644 index 0000000..a51bfc0 --- /dev/null +++ b/2021/day05.c @@ -0,0 +1,28 @@ +#include +#include +static void swap(int *x1, int *y1, int *x2, int *y2) { + int t = *x1; + *x1 = *x2; + *x2 = t; + t = *y1; + *y1 = *y2; + *y2 = t; +} +int main(void) { + static int grid[1024][1024]; + int x1, y1, x2, y2; + while (4 == scanf("%d,%d -> %d,%d\n", &x1, &y1, &x2, &y2)) { + if (x1 != x2 && y1 != y2) continue; + if (x2 < x1 || y2 < y1) swap(&x1, &y1, &x2, &y2); + for (int y = y1; y <= y2; ++y) + for (int x = x1; x <= x2; ++x) { + grid[y][x]++; + } + } + int points = 0; + for (int y = 0; y < 1024; ++y) + for (int x = 0; x < 1024; ++x) { + if (grid[y][x] > 1) points++; + } + printf("%d\n", points); +} -- cgit 1.4.1 mary refs log tree commit diff
Commit message (Expand)Author
2015-08-14clone: use cgit_print_error_page() instead of html_status()John Keeping
2015-08-14cgit: use cgit_print_error_page() where appropriateJohn Keeping
2015-08-14ui-shared: add cgit_print_error_page() functionJohn Keeping
2015-08-14ui-patch: make sure to send http headersChristian Hesse
2015-08-13Makefile: make "git/config.mak.uname" inclusion optionalJohn Keeping
2015-08-13ui-shared: show full date in tooltip if longer ago than max_relativeJohn Keeping
2015-08-13ui-shared: use common function in print_rel_date()John Keeping
2015-08-13ui-shared: extract date formatting to a functionJohn Keeping
2015-08-13filter: don't use dlsym unnecessarilyJohn Keeping
2015-08-13ui-tree: use "sane" isgraph()John Keeping
2015-08-13cgit.h: move stdbool.h from ui-shared.hJohn Keeping
2015-08-13cache.c: fix header orderJohn Keeping
2015-08-13configfile.c: don't include system headers directlyJohn Keeping
2015-08-13Remove redundant includesJohn Keeping
2015-08-13Makefile: include Git's config.mak.unameJohn Keeping
2015-08-13tests: allow shell to be overriddenJohn Keeping
2015-08-13redirect: cleanlinessJason A. Donenfeld
2015-08-13redirect: be more careful for different cgi setupsJason A. Donenfeld
2015-08-12ui-log: fix double countingJohn Keeping
2015-08-12log: allow users to follow a fileJohn Keeping
2015-08-12shared: make cgit_diff_tree_cb publicJohn Keeping
2015-08-12t0110: Chain together using &&Jason A. Donenfeld
2015-08-12about: always ensure page has a trailing slashJason A. Donenfeld
2015-08-12filters: apply HTML escapingLazaros Koromilas
2015-08-12git: update to v2.5.0Christian Hesse
2015-08-12Fix processing of repo.hide and repo.ignoreDaniel Reichelt