1101. The Earliest Moment When Everyone Become Friends

There are n people in a social group labeled from 00 to n1n - 1. You are given an array logs where logs[i] = [timestampi\text{timestamp}_ i, xix_i, yiy_i] indicates that xix_i and yiy_i will be friends at the time timestampi\text{timestamp}_ i.

Friendship is symmetric. That means if aa is friends with bb, then bb is friends with aa. Also, person aa is acquainted with a person bb if aa is friends with bb, or aa is a friend of someone acquainted with bb.

Return the earliest time for which every person became acquainted with every other person. If there is no such earliest time, return 1-1.

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: 2019030120190301
Explanation:
The first event occurs at timestamp = 20190101 and after 00 and 11 become friends we have the following friendship groups [0,1], [2], [3], [4], [5]. The second event occurs at timestamp = 20190104 and after 33 and 44 become friends we have the following friendship groups [0,1], [2], [3,4], [5]. The third event occurs at timestamp = 20190107 and after 22 and 33 become friends we have the following friendship groups [0,1], [2,3,4], [5]. The fourth event occurs at timestamp = 20190211 and after 11 and 55 become friends we have the following friendship groups [0,1,5], [2,3,4]. The fifth event occurs at timestamp = 20190224 and as 22 and 44 are already friends anything happens. The sixth event occurs at timestamp = 20190301 and after 00 and 33 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: 33

Constraints:

  • 2n1002 \leq n \leq 100
  • 11 \leq logs.length 104\leq 10^4
  • logs[i].length == 3
  • 0timestampi1090 \leq \text{timestamp}_ i \leq 10^9
  • 0xi,yin10 \leq x_i, y_i \leq n - 1
  • xiyix_i \neq y_i
  • All the values timestampi\text{timestamp}_ i are unique.
  • All the pairs (xi,yi)(x_i, y_i) 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 timestampj\text{timestamp}_ j. Then, we'll iterate through friendships from the least to greatest timestampj\text{timestamp}_ j 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 11 is connected to all other n1n-1 nodes. If the graph isn't connected after processing all the friendships, we'll return 1-1.

Let's denote the number of friendships(edges) as MM.

Since checking the connectivity of the graph is O(NlogN)\mathcal{O}(N\log{N}) and we do this O(M)\mathcal{O}(M) times, this solution runs in O(MNlogN)\mathcal{O}(MN\log{N}).

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 11. This is true as this operation turns 22 disjoint sets into 11 disjoint set without disturbing any other disjoint sets. We initially start with NN components (one for each person) and once we reach one component, we'll return the respective timestamp value. 1-1 will be returned if we never reach one component.

Time Complexity

Sorting takes O(MlogM)\mathcal{O}(M\log{M}) and the main algorithm runs in O(MlogN)\mathcal{O}(M\log{N}). Thus our time complexity is O(MlogM+MlogN)\mathcal{O}(M\log{M} + M\log{N}).

Time Complexity: O(MlogM+MlogN)\mathcal{O}(M\log{M} + M\log{N})

Bonus: We can also use union by rank mentioned here to improve the time complexity of DSU operations from O(logN)\mathcal{O}(\log{N}) to O(α(N))\mathcal{O}(\alpha(N)).

Space Complexity

Our DSU uses O(N)\mathcal{O}(N) memory.

Space Complexity: O(N)\mathcal{O}(N).

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 Evaluator
Discover Your Strengths and Weaknesses: Take Our 2-Minute Quiz to Tailor Your Study Plan:
Question 1 out of 10

How does quick sort divide the problem into subproblems?


Recommended Readings

Want a Structured Path to Master System Design Too? Don’t Miss This!