Advertisement
mgla

Advent of Code - 2024 - Day 8

Dec 8th, 2024
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.29 KB | None | 0 0
  1. var input = await File.ReadAllLinesAsync("input.txt");
  2.  
  3. var gridSize = input.Length;
  4. var antennas = new Dictionary<char, List<Position>>();
  5.  
  6. for (var row = 0; row < gridSize; row++)
  7. {
  8.     for (var col = 0; col < gridSize; col++)
  9.     {
  10.         var cell = input[row][col];
  11.         if (cell != '.')
  12.         {
  13.             if (!antennas.TryGetValue(cell, out _))
  14.             {
  15.                 antennas[cell] = [];
  16.             }
  17.             antennas[cell].Add(new Position(row, col));
  18.         }
  19.     }
  20. }
  21.  
  22. var antinodes1 = new HashSet<Position>();
  23. var antinodes2 = new HashSet<Position>();
  24.  
  25. foreach (var frequency in antennas.Keys)
  26. {
  27.     var locations = antennas[frequency];
  28.  
  29.     foreach (var a in locations)
  30.     {
  31.         foreach (var b in locations)
  32.         {
  33.             if (a == b)
  34.             {
  35.                 continue;
  36.             }
  37.  
  38.             var rowDiff = a.Row - b.Row;
  39.             var colDiff = a.Col - b.Col;
  40.  
  41.             var antinodeA = a.Move(rowDiff, colDiff);
  42.            
  43.             if (!antinodeA.OutOfBounds(gridSize))
  44.             {
  45.                 antinodes1.Add(antinodeA);
  46.             }
  47.            
  48.             while (!antinodeA.OutOfBounds(gridSize))
  49.             {
  50.                 antinodes2.Add(antinodeA);
  51.                 antinodeA = antinodeA.Move(rowDiff, colDiff);
  52.             }
  53.  
  54.             var antinodeB = b.Move(-rowDiff, -colDiff);
  55.            
  56.             if (!antinodeB.OutOfBounds(gridSize))
  57.             {
  58.                 antinodes1.Add(antinodeB);
  59.             }
  60.            
  61.             while (!antinodeB.OutOfBounds(gridSize))
  62.             {
  63.                 antinodes2.Add(antinodeB);
  64.                 antinodeB = antinodeB.Move(-rowDiff, -colDiff);
  65.             }
  66.  
  67.             antinodes2.Add(a);
  68.             antinodes2.Add(b);
  69.         }
  70.     }
  71. }
  72.  
  73. Console.WriteLine($"Part 1: {antinodes1.Count}");
  74. Console.WriteLine($"Part 2: {antinodes2.Count}");
  75.  
  76.  
  77. internal record Position(int Row, int Col)
  78. {
  79.     public Position Move(int row, int col)
  80.     {
  81.         return new Position(Row + row, Col + col);
  82.     }
  83.  
  84.     public bool OutOfBounds(int size)
  85.     {
  86.         return OutOfBounds(0, size);
  87.     }
  88.  
  89.     public bool OutOfBounds(int start, int end)
  90.     {
  91.         return Row < start || Row >= end || Col < start || Col >= end;
  92.     }
  93. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement