-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.java
40 lines (35 loc) · 1.32 KB
/
Solution.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
class UndergroundSystem {
private Map<Integer, String> checkInStation;
private Map<Integer, Integer> checkInTime;
private Map<String, int[]> totalTime;
public UndergroundSystem() {
checkInStation = new HashMap<>();
checkInTime = new HashMap<>();
totalTime = new HashMap<>();
}
public void checkIn(int id, String stationName, int t) {
checkInStation.put(id, stationName);
checkInTime.put(id, t);
}
public void checkOut(int id, String stationName, int t) {
int cost = t - checkInTime.remove(id);
String startStation = checkInStation.remove(id);
String stations = startStation + "." + stationName;
int[] times = totalTime.getOrDefault(stations, new int[2]);
times[0] += cost;
++times[1];
totalTime.put(stations, times);
}
public double getAverageTime(String startStation, String endStation) {
String stations = startStation + "." + endStation;
int[] times = totalTime.get(stations);
return times[0] * 1.0 / times[1];
}
}
/**
* Your UndergroundSystem object will be instantiated and called as such:
* UndergroundSystem obj = new UndergroundSystem();
* obj.checkIn(id,stationName,t);
* obj.checkOut(id,stationName,t);
* double param_3 = obj.getAverageTime(startStation,endStation);
*/