CSES - Fixed-Length Paths II
Authors: Andi Qu, Benjamin Qi
Appears In
Time Complexity: .
This solution is a simple extension of CSES Fixed-Length Paths I's solution.
Since we want to count the number of paths of length between and instead of a fixed length , a node with depth in 's -th child's subtree will contribute paths instead of paths to the answer.
This is a range sum, so we can use any range-sum data-structure (e.g. a BIT) to query and update efficiently. This adds an additional factor to the complexity.
C++
#include <bits/stdc++.h>typedef long long ll;using namespace std;int n, a, b;vector<int> graph[200001];int subtree[200001];ll ans = 0, bit[200001];int mx_depth;
Bonus Solution
It's also possible to solve this problem in linear time!
We use the same idea as the above solution but with prefix sums instead of a BIT and with small-to-large merging in a single DFS instead of centroid decomposition. This is because we can merge two prefix sum arrays and in time.
If we let denote the maximum depth in node 's subtree, then the resulting time complexity is
Since , the above expression simplifies to - a significant improvement from our first solution!
Below is Ben's code implementing this idea:
C++
#include <bits/stdc++.h>using namespace std;using ll = long long;using db = long double; // or double, if TL is tightusing str = string; // yay python!using pi = pair<int,int>;using pl = pair<ll,ll>;using pd = pair<db,db>;
Join the USACO Forum!
Stuck on a problem, or don't understand a module? Join the USACO Forum and get help from other competitive programmers!