Advertisement
Araf_12

Lemda_function_02

Dec 8th, 2024
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.46 KB | Source Code | 0 0
  1. auto dfs = [&](ll u, ll parent, auto&& self) -> ll {
  2.     ll mx1 = 0, mx2 = 0;
  3.  
  4.     for (auto v : adj[u]) {
  5.         if (v != parent) {
  6.             ll tmp = self(v, u, self); // Use self for recursion
  7.  
  8.             if (tmp > mx1) {
  9.                 mx2 = mx1;
  10.                 mx1 = tmp;
  11.             } else if (tmp > mx2) {
  12.                 mx2 = tmp;
  13.             }
  14.         }
  15.     }
  16.  
  17.     res = max(res, mx1 + mx2 + val[u]);
  18.     return max(mx1, mx2) + val[u];
  19. };
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement