-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLogAndProcessWindow.java
151 lines (129 loc) · 4.9 KB
/
LogAndProcessWindow.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
Suppose we have an unsorted log file of accesses to web resources. Each log entry consists of an access time,
the ID of the user making the access, and the resource ID.
The access time is represented as seconds , and all times are assumed to be in the same day.
//https://leetcode.com/playground/mRNirNDK
Find :
1. Each users min and max access timestamp.
2. Resource with the highest number of accesses in any 5 minute window.
Input :
logs = [
["58523", "user_1", "resource_1"],
["62314", "user_2", "resource_2"],
["54001", "user_1", "resource_3"],
["200", "user_6", "resource_5"],
["215", "user_6", "resource_4"],
["54060", "user_2", "resource_3"],
["53760", "user_3", "resource_3"],
["58522", "user_4", "resource_1"],
["53651", "user_5", "resource_3"],
["2", "user_6", "resource_1"],
["100", "user_6", "resource_6"],
["400", "user_7", "resource_2"],
["100", "user_8", "resource_2"],
["54359", "user_1", "resource_3"],
]
#1
Output:
user_3:[53760,53760]
user_2:[54060,62314]
user_1:[54001,58523]
user_7:[400,400]
user_6:[2,215]
user_5:[53651,53651]
user_4:[58522,58522]
user_8:[100,100]
#2
Output:
('resource_3', 3)
================================================================================================================================================
public class Main {
public static void main(String[] args) {
String[][] logs = {
{"10", "user_1", "resource_1"},
{"62314", "user_2", "resource_2"},
{"1", "user_1", "resource_3"},
{"200", "user_6", "resource_5"},
{"215", "user_6", "resource_4"},
{"2", "user_2", "resource_3"},
{"3", "user_3", "resource_3"},
{"58522", "user_4", "resource_1"},
{"4", "user_5", "resource_3"},
{"2", "user_6", "resource_1"},
{"100", "user_6", "resource_6"},
{"400", "user_7", "resource_2"},
{"100", "user_8", "resource_2"},
{"5", "user_1", "resource_3"},
};
List<List<String>> ans = getMinMaxTimestamps(logs);
List<String> ans2 = resourceWithHighestAccessIn5Min(logs);
System.out.println("====================================");
System.out.println("Resource with user start end ");
for (List<String> list : ans) {
System.out.println(Arrays.toString(list.toArray()));
}
System.out.println("====================================");
System.out.println("Followup -- Resource with Max hit");
System.out.println(Arrays.toString(ans2.toArray()));
}
//1
public static List<List<String>> getMinMaxTimestamps(String[][] logs) {
Map<String, int[]> map = new HashMap<>();
for (int i = 0; i < logs.length; i++) {
String userID = logs[i][1];
String timestamp = logs[i][0];
int timestampInt = Integer.valueOf(timestamp);//OR Interger.parseInt
int[] minMax = map.getOrDefault(userID,new int[]{Integer.MAX_VALUE,Integer.MIN_VALUE});
if(minMax[0] > timestampInt){
minMax[0] = timestampInt;
}
if(minMax[1] < timestampInt){
minMax[1] = timestampInt;
}
map.put(userID,minMax);
}
List<List<String>> results = new ArrayList<>();
for(String userId : map.keySet()){
List<String> r = new ArrayList<>();
r.add(userId);
r.add("" + map.get(userId)[0]);
r.add("" + map.get(userId)[1]);
results.add(r);
}
return results;
}
// 2
public static List<String> resourceWithHighestAccessIn5Min(String[][] logs) {
Map<String, List<Integer>> map = new HashMap<>();
for (int i = 0; i < logs.length; i++) {
String resourceID = logs[i][2];
String timestamp = logs[i][0];
int timestampInt = Integer.parseInt(timestamp);
List<Integer> list = map.getOrDefault(resourceID,new ArrayList<>());
list.add(timestampInt);
map.put(resourceID , list);
}
int maxCount = 0;
String maxResource = "";
for(String resource : map.keySet()){
List<Integer> timeStamps = map.get(resource);
Collections.sort(timeStamps);
//sliding window
int r = 0;
for(int l = 0 ; l < timeStamps.size() ; l++){
int count = 0;
while(r < timeStamps.size() && timeStamps.get(r) - timeStamps.get(l) < 5){
r++;
}
count = r-l;
if(count > maxCount){
maxCount = count;
maxResource = resource;
}
}
}
List<String> ans = new ArrayList<>();
ans.add(maxResource);
ans.add("" + maxCount);
return ans;
}
}