-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsolution.cpp
32 lines (30 loc) · 863 Bytes
/
solution.cpp
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
/**
* 113 / 113 test cases passed.
* Runtime: 12 ms
* Memory Usage: 13 MB
*/
class Solution {
public:
int char2int(const char &c) {
return c - '0';
}
int hash(const string &timePoint) {
return (char2int(timePoint[0]) * 10 + char2int(timePoint[1])) * 60 +
(char2int(timePoint[3]) * 10 + char2int(timePoint[4]));
}
int findMinDifference(vector<string>& timePoints) {
int n = timePoints.size();
if (n > 1440) return 0;
sort(timePoints.begin(), timePoints.end());
int ans = INT_MAX;
int t0 = hash(timePoints[0]);
int prev = t0;
for (int i = 1; i < n; ++ i) {
int curr = hash(timePoints[i]);
ans = min(ans, curr - prev);
prev = curr;
}
ans = min(ans, t0 + 1440 - prev);
return ans;
}
};