-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbstractMinMaxRough.java
More file actions
executable file
·302 lines (296 loc) · 11 KB
/
Copy pathAbstractMinMaxRough.java
File metadata and controls
executable file
·302 lines (296 loc) · 11 KB
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
import java.io.*;
import java.util.*;
import java.lang.*;
import java.math.*;
class AbstractMinMaxRough
{
public static void minHeapify(ArrayList<Integer> minHeap, int minHeapSize)
{
int i = minHeapSize;
while(i > 1)
{
if(minHeap.get(i) < minHeap.get(i / 2))
{
Collections.swap(minHeap, i, i / 2);
i = i / 2;
continue;
}
else
{
break;
}
}
}
public static void maxHeapify(ArrayList<Integer> maxHeap, int maxHeapSize)
{
int i = maxHeapSize;
while(i > 1)
{
if(maxHeap.get(i) > maxHeap.get(i / 2))
{
Collections.swap(maxHeap, i, i / 2);
i = i / 2;
continue;
}
else
{
break;
}
}
}
public static void minHeapifyAfterDeletion(ArrayList<Integer> minHeap, int minHeapSize)
{
int i = 1;
while((2 * i) <= minHeapSize)
{
int leftIndex = 2 * i;
int rightIndex = 2 * i + 1;
if(rightIndex <= minHeapSize)
{
if(minHeap.get(rightIndex) <= minHeap.get(leftIndex))
{
if(minHeap.get(i) > minHeap.get(rightIndex))
{
Collections.swap(minHeap, i, rightIndex);
i = rightIndex;
}
else
{
break;
}
}
else
{
if(minHeap.get(i) > minHeap.get(leftIndex))
{
Collections.swap(minHeap, i, leftIndex);
i = leftIndex;
}
else
{
break;
}
}
}
else
{
if(minHeap.get(i) > minHeap.get(leftIndex))
{
Collections.swap(minHeap, i, leftIndex);
i = leftIndex;
}
else
{
break;
}
}
}
}
public static void maxHeapifyAfterDeletion(ArrayList<Integer> maxHeap, int maxHeapSize)
{
int i = 1;
while((2 * i) <= maxHeapSize)
{
int leftIndex = 2 * i;
int rightIndex = 2 * i + 1;
if(rightIndex <= maxHeapSize)
{
System.out.println("LeftIndex and RightIndex : " + leftIndex + " " + rightIndex);
System.out.println("LeftValue : " + maxHeap.get(leftIndex) + " RightValue : " + maxHeap.get(rightIndex));
if(maxHeap.get(rightIndex) >= maxHeap.get(leftIndex))
{
if(maxHeap.get(i) < maxHeap.get(rightIndex))
{
Collections.swap(maxHeap, i, rightIndex);
i = rightIndex;
}
else
{
break;
}
}
else
{
if(maxHeap.get(i) < maxHeap.get(leftIndex))
{
Collections.swap(maxHeap, i, leftIndex);
i = leftIndex;
}
else
{
break;
}
}
}
else
{
System.out.println("MaxHeapify after deletion-" + " i : " + i + " leftIndex : " + leftIndex);
System.out.println("i and leftValues : " + maxHeap.get(i) + " " + maxHeap.get(leftIndex));
if(maxHeap.get(i) < maxHeap.get(leftIndex))
{
Collections.swap(maxHeap, i, leftIndex);
i = leftIndex;
}
else
{
break;
}
}
}
}
public static boolean buildMinMaxHeaps(ArrayList<Integer> minHeap, ArrayList<Integer> maxHeap, int valueToBeAdded, int minHeapSize, int maxHeapSize, int lowestValueOfMinHeap, int maximumValueOfMaxHeap)
{
System.out.println("-------------New Addition--------------");
int totalSize = minHeapSize + maxHeapSize + 1; //+1 indicates the size after adding the value to be added
System.out.println("Total Size: " + totalSize);
int oneThird = totalSize / 3;
System.out.println("One Third: " + oneThird);
if(oneThird <= minHeapSize)
{
System.out.println("MinHeap size less than one third");
if(valueToBeAdded <= lowestValueOfMinHeap)
{
maxHeap.add(valueToBeAdded);
maxHeapSize++;
if(maxHeapSize == 1)
{
System.out.println("MaxHeap size is 1");
return true;
}
else
{
maxHeapify(maxHeap, maxHeapSize);
System.out.println("MaxHeapSize: " + maxHeapSize);
}
}
else
{
System.out.println("Min value removed from minHeap and placed in maxHeap and new value is added to minHeap");
System.out.println("MinHeap size: " + minHeapSize);
Collections.swap(minHeap, minHeapSize, 1);
System.out.println("Value to be removed: " + minHeap.get(minHeapSize));
minHeap.remove(minHeapSize);
minHeapSize--;
System.out.println("Min Heap size: " + minHeapSize);
minHeapifyAfterDeletion(minHeap, minHeapSize);
if(minHeapSize >= 1)
{
System.out.println("MinHeap value after deleting: " + minHeap.get(1));
}
else
{
System.out.println("MinHeap size is 0");
}
minHeap.add(valueToBeAdded);
System.out.println("New value to be added: " + valueToBeAdded);
minHeapSize++;
System.out.println("MinHeap size: " + minHeapSize);
minHeapify(minHeap, minHeapSize);
System.out.println("Min value of MinHeap: " + minHeap.get(1));
System.out.println("Max Heap size before adding Prev min value from MinHeap: " + maxHeapSize);
maxHeap.add(lowestValueOfMinHeap);
maxHeapSize++;
System.out.println("MaxHeap size after adding value: " + maxHeapSize);
maxHeapify(maxHeap, maxHeapSize);
System.out.println("Max value Now: " + maxHeap.get(1));
}
return true;
}
else
{
System.out.println("Value going to be added in MinHeap");
if(valueToBeAdded >= maximumValueOfMaxHeap)
{
System.out.println("Value greater than maximum value of maxHeap");
minHeap.add(valueToBeAdded);
System.out.println("Value to be added: " + valueToBeAdded);
minHeapSize++;
minHeapify(minHeap, minHeapSize);
System.out.println("Mean HeapSize: " + minHeapSize);
}
else
{
System.out.println("Max value removed from maxHeap and placed in minheap and new value is added to maxHeap");
System.out.println("MaxHeap size: " + maxHeapSize);
Collections.swap(maxHeap, 1, maxHeapSize);
System.out.println("Value to be removed: " + maxHeap.get(maxHeapSize));
maxHeap.remove(maxHeapSize);
maxHeapSize--;
System.out.println("Max Heap size: " + maxHeapSize);
maxHeapifyAfterDeletion(maxHeap, maxHeapSize);
if(maxHeapSize >= 1)
{
System.out.println("MaxHeap value after deleting: " + maxHeap.get(1));
}
else
{
System.out.println("MaxHeap size is 0");
}
maxHeap.add(valueToBeAdded);
System.out.println("New value to be added: " + valueToBeAdded);
maxHeapSize++;
System.out.println("MaxHeap size: " + maxHeapSize);
maxHeapify(maxHeap, maxHeapSize);
System.out.println("Max value of MaxHeap: " + maxHeap.get(1));
System.out.println("Min Heap size before adding Prev max value from MaxHeap: " + minHeapSize);
minHeap.add(maximumValueOfMaxHeap);
minHeapSize++;
System.out.println("MinHeap size after adding value: " + minHeapSize);
minHeapify(minHeap, minHeapSize);
System.out.println("Min value Now: " + minHeap.get(1));
}
return false;
}
}
public static void main(String[] args)
{
int queries;
int minHeapSize = 0;
int maxHeapSize = 0;
int lowestValueOfMinHeap = 1000000009;
int highestValueOfMaxHeap = -1;
Scanner in = new Scanner(System.in);
queries = in.nextInt();
ArrayList<Integer> minHeap = new ArrayList<Integer>();
ArrayList<Integer> maxHeap = new ArrayList<Integer>();
minHeap.add(-1);
maxHeap.add(-1);
for(int i = 0; i < queries; i++)
{
int queryType = in.nextInt();
if(queryType == 1)
{
int valueToBeAdded = in.nextInt();
boolean maxHeapSizeExtended = buildMinMaxHeaps(minHeap, maxHeap, valueToBeAdded, minHeapSize, maxHeapSize, lowestValueOfMinHeap, highestValueOfMaxHeap);//true indicates that maxHeap size is increamented by one and false indicates that minHeap size is increamented by 1
if(maxHeapSizeExtended)
{
maxHeapSize++;
}
else
{
minHeapSize++;
}
if(minHeapSize >= 1)
{
lowestValueOfMinHeap = minHeap.get(1);
}
if(maxHeapSize >= 1)
{
highestValueOfMaxHeap = maxHeap.get(1);
}
}
else
{
System.out.println("--------Output--------");
if(minHeapSize >= 1)//Indicates that 1/3 rd element (because -1 is defaultly added as 1st element and hence min size needs to be four for atleast 1 element to be in top 1/3rd portion) is atleast 1.
{
System.out.println(minHeap.get(1));
}
else
{
System.out.println("No reviews yet");
}
}
}
}
}