-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday9.cs
152 lines (109 loc) · 3.7 KB
/
day9.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
using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
class Day9Class
{
public class Inputs
{
public double numero;
public bool isUsed;
public Inputs(double numero, bool isUsed)
{
this.numero = numero;
this.isUsed = isUsed;
}
}
public void Start()
{
// https://adventofcode.com/2020/day/9
Console.WriteLine("****** DIA 9 ******");
string[] lines = File.ReadAllLines(@"./inputs/inputs_dia9.txt");
List<Inputs> inputs = new List<Inputs>();
List<Inputs> preambulo = new List<Inputs>();
double[] input = new double[lines.Length];
ushort maxNumeroPReambulo = 25;
for (ushort i = 0; i < lines.Length; i++)
{
double valor = long.Parse(lines[i]);
input[i] = valor;
inputs.Add(new Inputs(valor, false));
if (i < maxNumeroPReambulo)
{
preambulo.Add(new Inputs(valor, false));
}
}
Console.WriteLine("****** FASE 1 ******");
double resultado = 0;
for (ushort i = maxNumeroPReambulo; i < inputs.Count; i++)
{
double currentNumber = inputs[i].numero;
double valor1 = 0;
double valor2 = 0;
bool encontrado = false;
for (ushort j = 0; j < preambulo.Count; j++)
{
if (encontrado == true)
{
break;
}
for (ushort k = 0; k < preambulo.Count; k++)
{
if (encontrado == true)
{
break;
}
if (preambulo[k].numero != preambulo[j].numero)
{
if (currentNumber == (preambulo[k].numero + preambulo[j].numero))
{
// Console.WriteLine(preambulo[k].numero + " + " + preambulo[j].numero + "=" + currentNumber);
valor1 = preambulo[k].numero;
valor2 = preambulo[j].numero;
preambulo[k].isUsed = true;
preambulo[j].isUsed = true;
preambulo.RemoveAt(0);
preambulo.Add(new Inputs( inputs[i].numero, false));
inputs[i].isUsed = true;
encontrado = true;
}
}
}
}
if (encontrado == false)
{
resultado = currentNumber;
break;
}
}
Console.WriteLine("Resultado=" + resultado);
Console.WriteLine("****** FASE 2 ******");
int start = 0;
int end = 1;
while (end < input.Length)
{
double sum = 0;
for (var i = start; i < end; i++)
{
sum += input[i];
}
if (sum == resultado)
{
// double min = input[start];
// double max = input[end];
// Console.WriteLine( "Min" + min + " max=" + max + " suma=" + (min + max) );
resultado = input[start..end].Min() + input[start..end].Max();
break;
}
if (sum < resultado)
{
end++;
}
if (sum > resultado)
{
start++;
}
}
Console.WriteLine("Resultado=" + resultado);
}
}