# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
997633 | fuad27 | Hard route (IZhO17_road) | C++17 | 324 ms | 82144 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int N = 500100;
vector<int> g[N];
int n;
pair<int,int> dp[N];
pair<ll,ll> ans={0, 1};
void dfs1(int at, int p) {
dp[at] = {1, 1};
for(int to:g[at]) {
if(to==p)continue;
dfs1(to, at);
if(dp[to].first+1 > dp[at].first) {
dp[at]=dp[to];
dp[at].first++;
}
else if(dp[to].first+1 == dp[at].first) {
dp[at].second+=dp[to].second;
}
}
}
void dfs2(int at, int p) {
sort(g[at].begin(), g[at].end(), [&](int u, int v) {
return dp[u].first > dp[v].first;
});
if(g[at].size()>=3) {
ll a = dp[g[at][0]].first, b = dp[g[at][1]].first, c = dp[g[at][2]].first;
ll res = a*(b+c);
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |