1101. The Earliest Moment When Everyone Become Friends
There are n people in a social group labeled from to . You are given an array logs
where logs[i]
= [, , ] indicates that and will be friends at the time .
Friendship is symmetric. That means if is friends with , then is friends with . Also, person is acquainted with a person if is friends with , or is a friend of someone acquainted with .
Return the earliest time for which every person became acquainted with every other person. If there is no such earliest time, return .
Example 1:
Input: logs = [[20190101,0,1],[20190104,3,4],[20190107,2,3],[20190211,1,5],[20190224,2,4],[20190301,0,3],[20190312,1,2],[20190322,4,5]]
, n = 6
Output:
Explanation:
The first event occurs at timestamp = 20190101
and after and become friends we have the following friendship groups [0,1], [2], [3], [4], [5]
.
The second event occurs at timestamp = 20190104
and after and become friends we have the following friendship groups [0,1], [2], [3,4], [5]
.
The third event occurs at timestamp = 20190107
and after and become friends we have the following friendship groups [0,1], [2,3,4], [5]
.
The fourth event occurs at timestamp = 20190211
and after and become friends we have the following friendship groups [0,1,5], [2,3,4]
.
The fifth event occurs at timestamp = 20190224
and as and are already friends anything happens.
The sixth event occurs at timestamp = 20190301
and after and become friends we have that all become friends.
Example 2:
Input: logs = [[0,2,0],[1,0,1],[3,0,3],[4,1,2],[7,3,1]]
, n = 4
Output:
Constraints:
-
logs.length
logs[i].length == 3
- All the values are unique.
- All the pairs occur at most one time in the input.
Solution
Brute Force
When we see problems related to connectivity, we should think of applying DSU. This problem asks us to find the first instance where the graph formed by friendships is connected. To accomplish this, we'll first sort the friendships by . Then, we'll iterate through friendships from the least to greatest and merge nodes connected by a friendship until the graph is connected.
After each iteration, we'll check if the graph is connected and return the timestamp value if it is. An easy way to check if the graph is connected is to check if node is connected to all other nodes. If the graph isn't connected after processing all the friendships, we'll return .
Let's denote the number of friendships(edges) as .
Since checking the connectivity of the graph is and we do this times, this solution runs in .
Full Solution
Since checking the connectivity of the graph is too inefficient, we'll maintain the number of components in the graph as we include more and more friendships. We can make the observation that every time we merge two disjoint sets, the number of components decreases by . This is true as this operation turns disjoint sets into disjoint set without disturbing any other disjoint sets. We initially start with components (one for each person) and once we reach one component, we'll return the respective timestamp value. will be returned if we never reach one component.
Time Complexity
Sorting takes and the main algorithm runs in . Thus our time complexity is .
Time Complexity:
Bonus: We can also use union by rank mentioned here to improve the time complexity of DSU operations from to .
Space Complexity
Our DSU uses memory.
Space Complexity: .
C++ Solution
class Solution {
public:
vector<int> parent;
int find(int x) { // finds the id/leader of a node
if (parent[x] == x) {
return x;
}
parent[x] = find(parent[x]);
return parent[x];
}
void Union(int x, int y) { // merges two disjoint sets into one set
x = find(x);
y = find(y);
parent[x] = y;
}
static bool comp(vector<int>& a, vector<int>& b) { // sorting comparator
return a[0] < b[0];
}
int earliestAcq(vector<vector<int>>& logs, int n) {
parent.resize(n);
for (int i = 0; i < n; i++) {
parent[i] = i;
}
sort(logs.begin(), logs.end(), comp); // sorts friendships by timestamp
int components = n;
for (vector<int> friendship : logs) {
int timestamp = friendship[0];
int x = friendship[1];
int y = friendship[2];
if (find(x) != find(y)) { // merge two disjoint sets
Union(x, y);
components--;
}
if (components == 1) { // reached connected graph
return timestamp;
}
}
return -1;
}
};
Java Solution
class Solution {
private int find(int x, int[] parent) { // finds the id/leader of a node
if (parent[x] == x) {
return x;
}
parent[x] = find(parent[x], parent);
return parent[x];
}
private void Union(int x, int y, int[] parent) { // merges two disjoint sets into one set
x = find(x, parent);
y = find(y, parent);
parent[x] = y;
}
public int earliestAcq(int[][] logs, int n) {
int[] parent = new int[n];
for (int i = 0; i < n; i++) {
parent[i] = i;
}
Arrays.sort(logs, (a, b) -> a[0] - b[0]); // sorts friendships by timestamp
int components = n;
for (int[] friendship : logs) {
int timestamp = friendship[0];
int x = friendship[1];
int y = friendship[2];
if (find(x, parent) != find(y, parent)) { // merge two disjoint sets
Union(x, y, parent);
components--;
}
if (components == 1) { // reached connected graph
return timestamp;
}
}
return -1;
}
}
Python Solution
class Solution: def earliestAcq(self, logs: List[List[int]], n: int) -> int: parent = [i for i in range(n)] def find(x): # finds the id/leader of a node if parent[x] == x: return x parent[x] = find(parent[x]) return parent[x] def Union(x, y): # merges two disjoint sets into one set x = find(x) y = find(y) parent[x] = y logs.sort(key=lambda x: x[0]) # sorts friendships by timestamp components = n for friendship in logs: timestamp = friendship[0] x = friendship[1] y = friendship[2] if find(x) != find(y): # merge two disjoint sets Union(x, y) components -= 1 if components == 1: # reached connected graph return timestamp return -1
Ready to land your dream job?
Unlock your dream job with a 2-minute evaluator for a personalized learning plan!
Start EvaluatorHow does quick sort divide the problem into subproblems?
Recommended Readings
LeetCode Patterns Your Personal Dijkstra's Algorithm to Landing Your Dream Job The goal of AlgoMonster is to help you get a job in the shortest amount of time possible in a data driven way We compiled datasets of tech interview problems and broke them down by patterns This way we
Recursion Recursion is one of the most important concepts in computer science Simply speaking recursion is the process of a function calling itself Using a real life analogy imagine a scenario where you invite your friends to lunch https algomonster s3 us east 2 amazonaws com recursion jpg You first
Runtime Overview When learning about algorithms and data structures you'll frequently encounter the term time complexity This concept is fundamental in computer science and offers insights into how long an algorithm takes to complete given a certain input size What is Time Complexity Time complexity represents the amount of time
Want a Structured Path to Master System Design Too? Don’t Miss This!