-
Notifications
You must be signed in to change notification settings - Fork 0
/
Project3.java
473 lines (396 loc) · 19.4 KB
/
Project3.java
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Scanner;
public class Project3 {
public static void main(String[] args) throws IOException {
File input = new File(args[0]);
FileWriter output = new FileWriter(args[1]);
Scanner readFile = new Scanner(input);
boolean run = true;
boolean run2 = true;
HashMap<String, ACC> accss = new HashMap<>();
HashMap<Integer, Flight> flights = new HashMap<>();
while (readFile.hasNextLine()){ // reading inputs
String[] inputs = readFile.nextLine().split(" ");
int accNo = Integer.parseInt(inputs[0]);
int flightNo = Integer.parseInt(inputs[1]);
for(int i = 0; i<accNo; i++){
ACC newACC = new ACC();
String[] acc = readFile.nextLine().split(" ");
int atcNo = 0;
for (int j = 0; j < acc.length; j++) {
if(j == 0) {
newACC.name = acc[0];
}else {
newACC.airports.add(acc[j]);
for (int k = 0; k < acc[j].length(); k++) {
char char1 = acc[j].charAt(k);
atcNo += (int) char1 * Math.pow(31, k);
}
atcNo = atcNo % 1000; // hashing
if(newACC.table.containsValue(atcNo)){
for(int m = 0; m < 1000; m ++){
atcNo += m;
if(!newACC.table.containsValue(atcNo)){
newACC.table.put(acc[j], atcNo);
newACC.table2.put(atcNo, acc[j]);
atcNo =0;
break;
}
}
}else{
newACC.table.put(acc[j], atcNo);
newACC.table2.put(atcNo, acc[j]);
atcNo =0;
}
}
}
accss.put(newACC.name, newACC);
}
for(int i = 0; i<flightNo; i++){ // reading inputs again
String[] flightLine = readFile.nextLine().split(" ");
ACC acc = accss.get(flightLine[2]);
Flight flight = new Flight(flightLine[1], acc, flightLine[3], flightLine[4], i);
flight.addTime = Integer.parseInt(flightLine[0]);
if (flight.addTime != 0){
flight.process = -1;
}
for (int k = 0; k < 2; k++){
boolean add = true;
ATC atc;
if (k == 0){
atc = flight.departure;
}else{
atc = flight.landing;
}
if (acc.atcs.isEmpty()){
acc.atcs.add(atc);
add = false;
}else {
for(int j = 0; j < acc.atcs.size(); j++){
if (acc.atcs.get(j).name.equals(atc.name)){
if (k == 0){
flight.departure = acc.atcs.get(j);
}else{
flight.landing = acc.atcs.get(j);
}
add = false;
}
}
}
if (add){
acc.atcs.add(atc);
}
}
for(int j = 5; j < 26; j++){
flight.times[j-5] = Integer.parseInt(flightLine[j]);
}
flight.acc.flights.add(flight);
flight.acc.flightNo += 1;
flights.put(i, flight);
}
}
int accno = 0;
while (run){ // for each acc program works
for (ACC acc:accss.values()) {
int flightno = 0;
if (accno == accss.size()){
run = false;
break;
}else{
run2 = true;
}
while (run2){ // it runs until the processes of the acc ends
if (flightno == acc.flightNo){
run2 = false;
accno += 1;
break;
}
Flight passedFlight = null;
int passed = Integer.MAX_VALUE;
for (Flight flight : acc.flights) {
if (!acc.readyQueue.contains(flight)){
if(flight.addTime == 0){
if (acc.run.contains(flight.process)){
flight.entrance = acc.passed;
acc.readyQueue.add(flight);
}
}
}
if (!flight.departure.readyQueue.contains(flight)){
if(flight.addTime == 0) {
if (flight.departure.runDeparture.contains(flight.process)) {
flight.entrance = acc.passed;
flight.departure.readyQueue.add(flight);
continue;
}
}
}
if (!flight.landing.readyQueue.contains(flight)) {
if (flight.addTime == 0) {
if (flight.landing.runLanding.contains(flight.process)) {
flight.entrance = acc.passed;
flight.landing.readyQueue.add(flight);
}
}
}
}
for (Flight flight:acc.flights) { // first it finds passed time
if(flight.addTime != 0){
if(flight.addTime < passed){
passed = flight.addTime;
passedFlight = flight;
}
}
}
if (!acc.readyQueue.isEmpty()){
Flight flight = acc.readyQueue.peek();
if (flight.changed){
if (flight.remaining < passed){
passed = flight.remaining;
passedFlight = flight;
if (flight.times[flight.process] > flight.remaining){
flight.old = true;
}else {
flight.old = false;
}
}
}else if (flight.times[flight.process] < passed){
passed = flight.times[flight.process];
passedFlight = flight;
if (passed > 30){
passed = 30;
flight.old = true;
}else{
flight.old = false;
}
}else if (flight.times[flight.process] >= passed && 30 < passed){
passed = 30;
flight.old = flight.times[flight.process] > 30;
}
for (ATC atc: acc.atcs){
if(!atc.readyQueue.isEmpty()){
Flight flight1 = atc.readyQueue.peek();
if(flight1.times[flight1.process] < passed){
passed = flight1.times[flight1.process];
passedFlight = flight;
}
}
}
for(Flight flight1:acc.flights){
if (!acc.readyQueue.contains(flight1)){
if (flight1.addTime == 0){
if (flight1.times[flight1.process] < passed){
passed = flight1.times[flight1.process];
passedFlight = flight1;
}
}
}
}
}else{
for(Flight flight:acc.flights){
if (flight.addTime == 0){
if (flight.times[flight.process] < passed){
passed = flight.times[flight.process];
passedFlight = flight;
}
}
}
}
acc.passed += passed;
boolean checked = false;
boolean running = false;
for(ATC atc : acc.atcs){
atc.running = false;
}
for(int i = 0; i < acc.flights.size(); i++){ // for each flight it passes the time according to their situations
Flight flight = acc.flights.get(i);
if (!checked){
if (passedFlight != null){
flight = passedFlight;
checked = true;
i--;
}
}else {
if(flight.equals(passedFlight) && checked){
continue;
}
}
if (flight == null && i+1 < acc.flightNo){
continue;
}
if (acc.readyQueue.contains(flight) && !acc.readyQueue.peek().equals(flight) && flight.times[flight.process] != 0){
continue;
}
if (flight.departure.readyQueue.contains(flight) && !flight.departure.readyQueue.peek().equals(flight) && flight.times[flight.process] != 0){
continue;
}
if (flight.landing.readyQueue.contains(flight) && !flight.landing.readyQueue.peek().equals(flight) && flight.times[flight.process] != 0){
continue;
}
if (flight.process == -1){
flight.addTime -= passed;
if (flight.addTime == 0){
flight.process += 1;
}
}else{
if (acc.run.contains(flight.process)) {
if (running){
continue;
}
running = true;
flight.times[flight.process] -= passed;
if (flight.times[flight.process] > 0){
if (passed < 30){
int remainingOld = flight.remaining;
flight.remaining = 30 - passed;
if (remainingOld > passed){
flight.remaining = remainingOld - passed;
flight.changed = true;
continue;
}
if (remainingOld + flight.remaining >= 30){
flight.remaining = 0;
flight.old = true;
flight.changed = false;
acc.readyQueue.remove(flight);
continue;
}else{
flight.changed = true;
}
if (flight.remaining > flight.times[flight.process]){
flight.remaining = flight.times[flight.process];
continue;
}
if (flight.remaining <= 0){
flight.remaining = 0;
flight.old = true;
flight.changed = false;
acc.readyQueue.remove(flight);
}
}else{
flight.remaining = 0;
flight.old = true;
flight.changed = false;
acc.readyQueue.remove(flight);
}
}else{
flight.remaining = 0;
acc.readyQueue.remove(flight);
flight.process += 1;
flight.old = false;
flight.changed = false;
if (flight.process == 21) {
acc.flights.remove(flight);
if(!checked){
i--;
}
flightno += 1;
}
}
}else if (flight.departure.runDeparture.contains(flight.process)){
if (flight.departure.running){
continue;
}
flight.departure.running = true;
flight.times[flight.process] -= passed;
if (flight.times[flight.process] == 0){
flight.departure.readyQueue.remove(flight);
flight.times[flight.process] = 0;
flight.process += 1;
flight.changed = false;
if (flight.process == 21) {
acc.flights.remove(flight);
if(!checked){
i--;
}
flightno += 1;
}
}
} else if (flight.landing.runLanding.contains(flight.process)){
if (flight.landing.running){
continue;
}
flight.landing.running = true;
flight.times[flight.process] -= passed;
if (flight.times[flight.process] == 0){
flight.landing.readyQueue.remove(flight);
flight.times[flight.process] = 0;
flight.process += 1;
flight.changed = false;
if (flight.process == 21) {
acc.flights.remove(flight);
if(!checked){
i--;
}
flightno += 1;
}
}
} else{
if (flight.times[flight.process] <= passed){
flight.times[flight.process] = 0;
flight.process += 1;
if (flight.process == 21) {
acc.flights.remove(flight);
if(!checked){
i--;
}
flightno += 1;
}
}else{
flight.times[flight.process] -= passed;
}
}
}
}
}
}
}
for (ACC acc: accss.values()){ // finding atc codes and writing them
ArrayList<String> atcnostr = new ArrayList<>();
ArrayList<Integer> atcnoint = new ArrayList<>();
for (String atc : acc.airports){
atcnoint.add(acc.table.get(atc));
}
Comparator<Integer> comparator = (o1, o2) -> {
if (o1 < o2){
return -1;
}else{
return 1;
}
};
atcnoint.sort(comparator);
for (int int1: atcnoint){
atcnostr.add(String.valueOf(int1));
}
for (int int1:atcnoint){
String atcName = acc.table2.get(int1);
String str = String.valueOf(int1);
if (int1 % 100 == int1){
if (int1 % 10 == int1){
str = "00" + str;
}else {
str = "0" + str;
}
}
acc.atcnos.add(atcName + str);
}
}
int counter = 0;
for (ACC acc : accss.values()){
StringBuilder str = new StringBuilder();
str = new StringBuilder(acc.name + " " + acc.passed);
for (String atc: acc.atcnos){
str.append(" ").append(atc);
}
str.append("\n");
output.write(String.valueOf(str));
counter++;
}
output.close();
}
}