-
Notifications
You must be signed in to change notification settings - Fork 0
/
day11.cs
187 lines (144 loc) · 4.89 KB
/
day11.cs
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
using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
class Day11Class
{
string[] lines = File.ReadAllLines(@"./inputs/inputs_dia11.txt");
char[,] mapa = new char[1, 1];
char[,] mapatemporal = new char[1, 1];
public void Start()
{
// https://adventofcode.com/2020/day/11
Console.WriteLine("****** DIA 11 ******");
mapa = InicializarMapa(lines[0].Length, lines.Length, lines);
mapatemporal = new char[lines[0].Length, lines.Length];
bool isParte2 = false;
Console.WriteLine("****** FASE 1 ******");
int contador = 0;
int resultadoParte1 = 0;
int resultadoParte2 = 0;
bool isMapaNotEstable = true;
int vecinosMaximoProximos = 4;
int vueltas = 0;
while (isMapaNotEstable == true)
{
// vueltas++;
// Console.WriteLine("vueltas=" + vueltas);
int numeroAsientosOcupados = ActualizarAsientos(altura: lines.Length, ancho: lines[0].Length, vecinosMaximoProximos, isParte2);
mapa = ClonarMapa(mapatemporal);
if (numeroAsientosOcupados == contador)
{
if (isParte2 == true)
{
isMapaNotEstable = false;
resultadoParte2 = contador;
}
else
{
resultadoParte1 = contador;
isParte2 = true;
vecinosMaximoProximos = 5;
mapa = InicializarMapa(ancho: lines[0].Length, alto: lines.Length, lines);
contador = 0;
numeroAsientosOcupados = 0;
}
}
else
{
contador = numeroAsientosOcupados;
}
}
Console.WriteLine("El resultado es=" + resultadoParte1);
Console.WriteLine("****** FASE 2 ******");
Console.WriteLine("El resultado es=" + resultadoParte2);
}
private char[,] InicializarMapa(int ancho, int alto, string[] lines)
{
char[,] mapa = new char[ancho, alto];
for (int y = 0; y < lines.Length; y++)
{
for (int x = 0; x < lines[0].Length; x++)
{
mapa[x, y] = lines[y][x];
}
}
return mapa;
}
private int ActualizarAsientos(int altura, int ancho, int vecinosMaximo, bool isParte2)
{
int asientosOcupados = 0;
int asientosVecinosOcupados = 0;
// char[,] mapaTemporal = new char[ancho, altura];
for (int y = 0; y < altura; y++)
{
for (int x = 0; x < ancho; x++)
{
asientosVecinosOcupados = 0;
for (int i = 0; i < 8; i++)
{
asientosVecinosOcupados += CheckOtherSeats(altura, ancho, i, x, y, isParte2);
}
if (mapa[x, y] == 'L' && asientosVecinosOcupados == 0)
{
mapatemporal[x, y] = '#';
asientosOcupados++;
}
else if (mapa[x, y] == '#' && asientosVecinosOcupados >= vecinosMaximo)
{
mapatemporal[x, y] = 'L';
}
else if (mapa[x, y] == '#' && asientosVecinosOcupados < vecinosMaximo)
{
asientosOcupados++;
}
}
}
return asientosOcupados;
}
private int CheckOtherSeats(int altura, int ancho, int i, int x, int y, bool isParte2)
{
int[,] direcciones = {
{ 0, -1 },
{ 1, -1 },
{ 1, 0 },
{ 1, 1 },
{ 0, 1 },
{ -1, 1 },
{ -1, 0 },
{ -1, -1 }
};
int numVecinosOcupados = 0;
int currentPosX = direcciones[i, 0] + x;
int currentPosY = direcciones[i, 1] + y;
bool noEncontradoAsiento = true;
do
{
if ((currentPosX >= 0 && currentPosX < ancho) &&
(currentPosY >= 0 && currentPosY < altura))
{
if (mapa[currentPosX, currentPosY] == 'L')
{
noEncontradoAsiento = false;
}
else if (mapa[currentPosX, currentPosY] == '#')
{
numVecinosOcupados++;
noEncontradoAsiento = false;
}
currentPosX += direcciones[i, 0];
currentPosY += direcciones[i, 1];
}
else
{
noEncontradoAsiento = false;
}
}
while (isParte2 && noEncontradoAsiento);
return numVecinosOcupados;
}
private char[,] ClonarMapa(char[,] mapatemporal)
{
return (char[,])mapatemporal.Clone();
}
}