-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintervalos.cpp
242 lines (206 loc) · 6.17 KB
/
intervalos.cpp
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
/* 47158014 */
//#include <string.h>
//#include <stdio.h>
#include "include/intervalos.h"
//#include<iostream>
//using namespace std;
/*
typedef unsigned int uint;
struct intervalo_t {
// fin > inicio
uint inicio;
uint fin;
uint volumen;
};
*/
struct intervalo_t_des {
uint inicio;
uint fin;
uint volumen;
uint pos_real;
};
void mergeSort(intervalo_t_des arreglo[], uint izq, uint der){
if (der > izq){
//CALCULO EL MEDIO
uint medio = izq + (der - izq) / 2;
//LLAMADA RECURSIVA
mergeSort(arreglo, izq, medio);
mergeSort(arreglo, medio +1, der);
// CREO ARRAYS TEMPORALES PARA DIVIDIR
uint t1 = medio - izq + 1;
uint t2 = der - medio;
intervalo_t_des* Left = new intervalo_t_des[t1];
intervalo_t_des* Right = new intervalo_t_des[t2];
for (uint j = 0; j < t2; j++){
Right[j] = arreglo[medio + 1+ j];
}
for (uint i = 0; i < t1; i++){
Left[i] = arreglo[izq + i];
}
//ELIJO EL MENOR EN CADA UNO PARA EL RESULTADO
uint i = 0, j = 0;
while (j < t2 && i < t1)
{
if (Left[i].fin > Right[j].fin)
{
arreglo[izq] = Right[j];
j++;
}
else
{
arreglo[izq] = Left[i];
i++;
}
izq++;
}
//Copio lo que quedo del array sobrante
for (uint p = i; p < t1; p++)
{
arreglo[izq] = Left[p];
izq++;
}
for (uint p = j; p < t2; p++)
{
arreglo[izq] = Right[p];
izq++;
}
delete[] Left;
delete[] Right;
}
}
/*
Devuelve una copia de 'intervalos'.
*/
intervalo_t_des *copiar_estructura(const intervalo_t *intervalos, uint cant_intervalos) {
intervalo_t_des *copia = new intervalo_t_des[cant_intervalos];
for (uint i = 0; i < cant_intervalos; i++){
copia[i].fin = intervalos[i].fin;
copia[i].inicio = intervalos[i].inicio;
copia[i].volumen = intervalos[i].volumen;
copia[i].pos_real = i;
}
return copia;
}
void imprimir(intervalo_t_des *A, int tam){
for (int i=0; i < tam; i++);
// cout << A[i].fin << "\n" <<endl;
}
void imprimirBools(bool *A, int tam){
for (int i=0; i < tam; i++);
// cout << A[i]?1:0 << "\n" <<endl;
}
/* Devuelve un arreglo de booleanos de 'n' con TRUE en los intervalos asignados
los cuales no se superponen. O sea son compatibles.
La cantidad de intervalos asignados debe ser la máxima posible.
'intervalos' es un arreglo con 'n' intervalo_t.
El tiempo de ejecucion de peor caso debe ser O(n*log(n)).
*/
// Idea extraida de libro
bool *max_cantidad(const intervalo_t *intervalos, uint n){
intervalo_t_des *intervalos_temp = copiar_estructura(intervalos,n);
// imprimir(intervalos,n);
// imprimir(intervalos_temp,n);
mergeSort(intervalos_temp,0,n-1);// para ordenar en n log n
// imprimir(intervalos_temp,n);
bool *booleanos = new bool[n];
uint tomado = 0;
booleanos[intervalos_temp[tomado].pos_real] = true;
for (uint i = 1; i<n; i++){
uint fin_del_actual = intervalos_temp[tomado].fin;
uint inicio_del_siguiente = intervalos_temp[i].inicio;
if (fin_del_actual <= inicio_del_siguiente){
booleanos[intervalos_temp[i].pos_real] = true;
tomado = i;
}else{
booleanos[intervalos_temp[i].pos_real] = false;
};
}
delete[] intervalos_temp;
return booleanos;
};
int p(intervalo_t_des* intervalos,const uint actual)
{
int izq = 0;
int der = actual - 1;
while (izq <= der)
{
int med = (izq + der) / 2;
if (intervalos[med].fin > intervalos[actual].inicio)
der = med - 1;
else
if (intervalos[med + 1].fin > intervalos[actual].inicio)
return med;
else
izq = med + 1;
}
return -1;
}
void imprimir3(uint *A, int size)
{
for (int i=0; i < size; i++);
// printf("%d ", A[i]);
}
uint maximo(uint uno, uint dos){
if (uno >= dos){
return uno;
}else{
return dos;
}
}
/* Devuelve un arreglo de booleanos de 'n' con TRUE en los intervalos asignados
los cuales no se superponen.
La suma de los volumenes de los intervalos asignados debe ser la máxima
posible.
'intervalos' es un arreglo con 'n' intervalo_t.
El tiempo de ejecucion de peor caso debe ser O(n*log(n)).
*/
bool *max_volumen(const intervalo_t *intervalos, uint n){
// printf("llego \r\n");
intervalo_t_des *arreglo = copiar_estructura(intervalos,n);
mergeSort(arreglo,0,n-1);
uint *tabla = new uint[n];
bool* booleanos = new bool[n];
tabla[0] = arreglo[0].volumen;
for (uint i=1; i<n; i++)
{
booleanos[i] = false;
uint elvolumen = arreglo[i].volumen;
// calculo p(j)
int pj = p(arreglo, i);
elvolumen += (pj != -1)?tabla[pj]:0;
// guardo los valores en la tabla de acuerdo a cual es el maximo
if (elvolumen > tabla[i-1])
tabla[i] = elvolumen;
else
tabla[i] = tabla[i-1];
}
// Idea extraida de Open Fing
uint j = n-1;
while (j > 0){
uint incluir = arreglo[j].volumen;
int pij = p(arreglo,j);
uint pj = pij==-1?0:tabla[pij];
incluir += pj;
// cout << "valor para " << j << " es " << (incluir > tabla[n-1]-arreglo[j].volumen) << " pos real " << arreglo[j].pos_real << endl;
if (incluir > tabla[j-1]){
booleanos[arreglo[j].pos_real] = true;
j = pij==-1?0:pij;
}else
j--;
}
uint suma = 0;
booleanos[0] = false;
// cout << "suma: " << endl;
for (uint i=0; i<n; i++){
suma += booleanos[arreglo[i].pos_real]?intervalos[arreglo[i].pos_real].volumen:0;
}
// cout << "res : " << arreglo[0].pos_real << endl;
booleanos[arreglo[0].pos_real] = suma < tabla[n-1];
// cout << "suma: " << suma << endl;
// imprimir4(arreglo,n);
// cout << "resultado: " << tabla[n-1] << endl;
// uint resultado = tabla[n-1];
delete[] tabla;
delete[] arreglo;
return booleanos;
};