-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path08.rb
54 lines (41 loc) · 1.72 KB
/
08.rb
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
# https://adventofcode.com/2024/day/8
map = File.readlines('input08.txt').map(&:chomp).map(&:chars)
height = map.length
width = map[0].length
antennas = Hash.new { |h, k| h[k] = [] }
map.each_with_index do |row, y|
row.each_with_index do |cell, x|
antennas[cell] << [y, x] if cell != '.'
end
end
########################################################################################################################
# 1
########################################################################################################################
locations = Set.new
antennas.each_value do |antennas_coords|
antennas_coords.permutation(2).each do |(antenna1_y, antenna1_x), (antenna2_y, antenna2_x)|
antinode_y = antenna1_y - (antenna2_y - antenna1_y)
antinode_x = antenna1_x - (antenna2_x - antenna1_x)
locations << [antinode_y, antinode_x] if antinode_y.between?(0, height - 1) && antinode_x.between?(0, width - 1)
end
end
puts locations.count
# 423
########################################################################################################################
# 2
########################################################################################################################
locations = Set.new
antennas.each_value do |antennas_coords|
antennas_coords.permutation(2).each do |(antenna1_y, antenna1_x), (antenna2_y, antenna2_x)|
y_delta, x_delta = antenna2_y - antenna1_y, antenna2_x - antenna1_x
antinode_y, antinode_x = antenna1_y, antenna1_x
loop do
locations << [antinode_y, antinode_x]
antinode_y -= y_delta
antinode_x -= x_delta
break unless antinode_y.between?(0, height - 1) && antinode_x.between?(0, width - 1)
end
end
end
puts locations.count
# 1287