LC 3419. Minimize the Maximum Edge Weight of Graph
https://leetcode.com/problems/minimize-the-maximum-edge-weight-of-graph/description/
Tag: Binary Search, DFS
class Solution {
public:
void dfs(int pre, int cur, vector<vector<pair<