-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1396.design-underground-system.java
100 lines (80 loc) · 2.66 KB
/
1396.design-underground-system.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
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
/*
* @lc app=leetcode id=1396 lang=java
*
* [1396] Design Underground System
*/
// @lc code=start
class UndergroundSystem {
class Start {
String station;
int time;
public Start(String station, int time) {
this.station = station;
this.time = time;
}
}
class StartEnd {
String start;
String end;
public StartEnd(String start, String end) {
this.start = start;
this.end = end;
}
public int hashCode() {
return (start + end).hashCode();
}
public boolean equals(Object obj2) {
if (obj2 instanceof StartEnd) {
StartEnd startEnd2 = (StartEnd) obj2;
return this.start.equals(startEnd2.start) && this.end.equals(startEnd2.end);
}
return false;
}
}
class TimePeople {
int totalTime;
int totalPeople;
public TimePeople(int totalTime, int amount) {
this.totalTime = totalTime;
this.totalPeople = amount;
}
}
Map<Integer, Start> startInfo;
Map<StartEnd, TimePeople> travalInfo;
public UndergroundSystem() {
startInfo = new HashMap<Integer, Start>();
travalInfo = new HashMap<StartEnd, TimePeople>();
}
public void checkIn(int id, String stationName, int t) {
startInfo.put(id, new Start(stationName, t));
}
public void checkOut(int id, String stationName, int t) {
Start start = startInfo.get(id);
// A customer can only be checked into one place at a time.
String startStation = start.station;
int startTime = start.time;
StartEnd startEnd = new StartEnd(startStation, stationName);
TimePeople sumAmount = travalInfo.getOrDefault(startEnd, new TimePeople(0, 0));
sumAmount.totalTime += t - startTime;
sumAmount.totalPeople++;
travalInfo.put(startEnd, sumAmount);
}
public double getAverageTime(String startStation, String endStation) {
StartEnd travel = new StartEnd(startStation, endStation);
TimePeople sumAmount = travalInfo.get(travel);
int sum = sumAmount.totalTime, amount = sumAmount.totalPeople;
return 1.0 * sum / amount;
}
}
/**
* 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);
*/
// @lc code=end