-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMilestone1.java
273 lines (261 loc) · 9.75 KB
/
Milestone1.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
package Milestone1;
import java.time.LocalDate;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class Train{
long trainno;
String source,dest;
int soudist,destdist;
String[] coaches;
int[] availseats;
int len;
Map<LocalDate,int[]>seatMatrix=new HashMap<>();
Train(long t,String s,String d,int sd,int dd,String[] c,int[] a){
this.trainno=t;
this.source=s;
this.dest=d;
this.soudist=sd;
this.destdist=dd;
this.coaches=c;
this.availseats=a;
}
void disp()
{
System.out.println("The train "+this.trainno+" is available from "+this.source+" to "+this.dest);
}
boolean book(String source,String dest,LocalDate date,String coa,int num,int ticknum)
{
try {
if (!this.seatMatrix.containsKey(date)) {
this.seatMatrix.put(date, new int[4]);
}
for(int i=0;i<coaches.length;i++)
{
if(coaches[i].charAt(0)=='S')
{
seatMatrix.get(date)[0] += availseats[i];
}
else if(coaches[i].charAt(0)=='A')
{
seatMatrix.get(date)[1] += availseats[i];
}
else if(coaches[i].charAt(0)=='B')
{
seatMatrix.get(date)[2] += availseats[i];
}
else
{
seatMatrix.get(date)[3] += availseats[i];
}
}
if (coa.charAt(0) == 'S' && (seatMatrix.get(date)[0]>=num))
{
seatMatrix.get(date)[0]-=num;
System.out.println(ticknum+" "+Math.abs(this.soudist-this.destdist)*1*num);
}
else if(coa.charAt(0) == '3' && (seatMatrix.get(date)[1]>=num))
{
seatMatrix.get(date)[1]-=num;
System.out.println(ticknum+" "+Math.abs(this.soudist-this.destdist)*2*num);
}
else if(coa.charAt(0) == '2' && (seatMatrix.get(date)[2]>=num))
{
seatMatrix.get(date)[2]-=num;
System.out.println(ticknum+" "+Math.abs(this.soudist-this.destdist)*3*num);
}
else if(coa.charAt(0) == '1' && (seatMatrix.get(date)[3]>=num))
{
seatMatrix.get(date)[3]-=num;
System.out.println(ticknum+" "+Math.abs(this.soudist-this.destdist)*4*num);
}
else
{
System.out.println("Not enough seats available!Try with a lesser number");
}
return true;
} catch (Exception e) {
System.out.println("The booking failed due to "+e.getMessage());
System.out.println("Please try again");
return false;
}
}
public static void main(String[] args) {
int ticknum=10000001;
String p[]={"S1","S2","B1","A1","H1"};
String s[]={"S1","S2","S3","B1","B2"};
int q[]={72,72,72,48,24};
int r[]={15,20,50,36,48};
Train[] trains = new Train[2];
trains[0] = new Train(17726, "Rajkot","Mumbai",0,750,p,q);
trains[1] = new Train(37392,"Ahmedabad","Surat",0,300,s,r);
System.out.println("Welcome to the Railways!");
while(true)
{
Scanner sc=new Scanner(System.in);
System.out.println("Write book for booking else exit for exit");
String in=sc.nextLine(),out="exit";
if(in.equals(out))
{
System.out.println("Thank You for choosing Indian Railways");
System.out.println("We hope to serve you again some day");
break;
}
else
{
for (Train train : trains) {
train.disp();
}
System.out.println("Please enter the booking details in the format(in space-separated form):");
System.out.println("Source Destination Date(YYYY/MM/DD) Coach Number-of-passengers");
System.out.println("The following is the convention for respective type of coach");
System.out.println("SL-Sleeper");
System.out.println("3A-3 Tier AC");
System.out.println("2A-2 Tier AC");
System.out.println("1A-First Class AC");
String input=sc.nextLine();
String[] inputs=input.split(" ");
String source=inputs[0];
String dest=inputs[1];
LocalDate date=LocalDate.parse(inputs[2]);
String coa=inputs[3];
int num=Integer.parseInt(inputs[4]);
int check=0;
for (Train train : trains) {
if(train.source.equals(source) && train.dest.equals(dest) && train.book(source,dest,date,coa,num,ticknum)==true)
{
// train.book(source,dest,date,coa,num,ticknum);
ticknum++;
check++;
}
}
if(check==0){
System.out.println("No such trains available for the following source and destination");
}
}
}
}
}
//OUTPUT
Welcome to the Railways!
Write book for booking else exit for exit
book
The train 17726 is available from Rajkot to Mumbai
The train 37392 is available from Ahmedabad to Surat
Please enter the booking details in the format(in space-separated form):
Source Destination Date(YYYY/MM/DD) Coach Number-of-passengers
The following is the convention for respective type of coach
SL-Sleeper
3A-3 Tier AC
2A-2 Tier AC
1A-First Class AC
Rajkot Surat 2023-04-15 SL 144
No such trains available for the following source and destination
Write book for booking else exit for exit
book
The train 17726 is available from Rajkot to Mumbai
The train 37392 is available from Ahmedabad to Surat
Please enter the booking details in the format(in space-separated form):
Source Destination Date(YYYY/MM/DD) Coach Number-of-passengers
The following is the convention for respective type of coach
SL-Sleeper
3A-3 Tier AC
2A-2 Tier AC
1A-First Class AC
Rajkot Surat 2023-04-15 SL 144
No such trains available for the following source and destination
Write book for booking else exit for exit
book
The train 17726 is available from Rajkot to Mumbai
The train 37392 is available from Ahmedabad to Surat
Please enter the booking details in the format(in space-separated form):
Source Destination Date(YYYY/MM/DD) Coach Number-of-passengers
The following is the convention for respective type of coach
SL-Sleeper
3A-3 Tier AC
2A-2 Tier AC
1A-First Class AC
Rajkot Surat 2023-04-15 SL 144
No such trains available for the following source and destination
Write book for booking else exit for exit
book
The train 17726 is available from Rajkot to Mumbai
The train 37392 is available from Ahmedabad to Surat
Please enter the booking details in the format(in space-separated form):
Source Destination Date(YYYY/MM/DD) Coach Number-of-passengers
The following is the convention for respective type of coach
SL-Sleeper
3A-3 Tier AC
2A-2 Tier AC
1A-First Class AC
Rajkot Mumbai 2023-04-15 SL 144
10000001 108000
Write book for booking else exit for exit
book
The train 17726 is available from Rajkot to Mumbai
The train 37392 is available from Ahmedabad to Surat
Please enter the booking details in the format(in space-separated form):
Source Destination Date(YYYY/MM/DD) Coach Number-of-passengers
The following is the convention for respective type of coach
SL-Sleeper
3A-3 Tier AC
2A-2 Tier AC
1A-First Class AC
Rajkot Mumbai 2023-04-15 SL 144
Not enough seats available!Try with a lesser number
Write book for booking else exit for exit
book
The train 17726 is available from Rajkot to Mumbai
The train 37392 is available from Ahmedabad to Surat
Please enter the booking details in the format(in space-separated form):
Source Destination Date(YYYY/MM/DD) Coach Number-of-passengers
The following is the convention for respective type of coach
SL-Sleeper
3A-3 Tier AC
2A-2 Tier AC
1A-First Class AC
Rajkot Surat 2023-04-15 SL 144
No such trains available for the following source and destination
Write book for booking else exit for exit
book
The train 17726 is available from Rajkot to Mumbai
The train 37392 is available from Ahmedabad to Surat
Please enter the booking details in the format(in space-separated form):
Source Destination Date(YYYY/MM/DD) Coach Number-of-passengers
The following is the convention for respective type of coach
SL-Sleeper
3A-3 Tier AC
2A-2 Tier AC
1A-First Class AC
Rajkot Surat 2023-04-15 SL 144
No such trains available for the following source and destination
Write book for booking else exit for exit
book
The train 17726 is available from Rajkot to Mumbai
The train 37392 is available from Ahmedabad to Surat
Please enter the booking details in the format(in space-separated form):
Source Destination Date(YYYY/MM/DD) Coach Number-of-passengers
The following is the convention for respective type of coach
SL-Sleeper
3A-3 Tier AC
2A-2 Tier AC
1A-First Class AC
Rajkot Mumbai 2023-04-15 SL 144
Not enough seats available!Try with a lesser number
Write book for booking else exit for exit
book
The train 17726 is available from Rajkot to Mumbai
The train 37392 is available from Ahmedabad to Surat
Please enter the booking details in the format(in space-separated form):
Source Destination Date(YYYY/MM/DD) Coach Number-of-passengers
The following is the convention for respective type of coach
SL-Sleeper
3A-3 Tier AC
2A-2 Tier AC
1A-First Class AC
Rajkot Mumbai 2023-04-15 SL 145
Not enough seats available!Try with a lesser number
Write book for booking else exit for exit
exit
Thank You for choosing Indian Railways
We hope to serve you again some day