Advertisement
Araf_12

Lemda_function_01

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