#include <bits/stdc++.h>
#include "dreaming.h"
using namespace std;
#define pb push_back
#define mod 1000000007
#define h1 7897897897897897
#define h2 7897466719774591
#define b1 98762051
#define b2 98765431
#define inf 1000000000
#define pi 3.1415926535897932384626
#define LMAX 9223372036854775807
#define ll long long
#define fi first
#define se second
#define pii pair<int, int>
#define pll pair<ll, ll>
#define vi vector<int>
#define vl vector<ll>
#define vp vector<pii>
#define SET(a, b) memset(a, b, sizeof(a));
#define all(x) (x).begin(), (x).end()
#define FOR(i, a, b) for (int i = (a); i <= (b); i++)
#define FORD(i, a, b) for (int i = (a); i >= (b); i--)
int dist[100005], deg[100005], dp[100005], dpup[100005], dpdown[100005], n, m, l, diameter, ans, maxchild, secondmax;
vp edges[100005];
vi v, comp;
bool vis[100005];
void dfs(int x, int p) {
diameter = max(diameter, dist[x]);
vis[x] = true;
v.pb(x);
for (auto edge: edges[x]) {
if (edge.fi != p) {
dist[edge.fi] = dist[x] + edge.se;
dfs(edge.fi, x);
}
}
}
int find_diameter(int root) {
dist[root] = 0;
diameter = 0;
v.clear();
dfs(root, -1);
return diameter;
}
//compute initial dp and dpdown
int dfs2(int x, int p) {
int maxx = 0;
if (p == -1) {
for (auto edge: edges[x]) {
int child = dfs2(edge.fi, x) + edge.se;
if (child > maxx) {
maxx = child;
maxchild = edge.fi;
} else {
secondmax = max(secondmax, child);
}
}
dpdown[x] = maxx;
dp[x] = maxx;
return dpdown[x];
}
for (auto edge: edges[x]) {
if (edge.fi != p) {
int child = dfs2(edge.fi, x) + edge.se;
maxx = max(maxx, child);
}
}
dpdown[x] = maxx;
dp[x] = maxx;
return dpdown[x];
}
//update dp and dpup
void dfs3(int x, int p) {
if (p == -1) {
for (auto edge: edges[x]) {
if (edge.fi == maxchild) {
dpup[edge.fi] = secondmax + edge.se;
} else {
dpup[edge.fi] = dpdown[x] + edge.se;
}
dp[edge.fi] = max(dpup[edge.fi], dpdown[edge.fi]);
dfs3(edge.fi, x);
}
return;
}
dp[x] = max(dp[x], dpup[x]);
for (auto edge: edges[x]) {
if (edge.fi != p) {
dpup[edge.fi] = max(dpup[edge.fi], dpup[x] + edge.se);
dp[edge.fi] = max(dpup[edge.fi], dpdown[edge.fi]);
dfs3(edge.fi, x);
}
}
}
void find_shortest_path() {
int useless = dfs2(v[0], -1);
dfs3(v[0], -1);
int tmp = inf * 2;
for (int node: v) {
tmp = min(tmp, dp[node]);
//cout << node << ' ' << dpup[node] << ' ' << dpdown[node] << ' ' << dp[node] << endl;
}
comp.pb(tmp);
//cout << "tmp " << tmp << endl;
}
int travelTime(int N, int M, int L, int u[], int v[], int t[]) {
n = N;
m = M;
l = L;
FOR(i, 0, m-1) {
edges[u[i] + 1].emplace_back(v[i] + 1, t[i]);
edges[v[i] + 1].emplace_back(u[i] + 1, t[i]);
deg[u[i] + 1]++;
deg[v[i] + 1]++;
}
FOR(i, 1, n) {
if (!vis[i]) {
ans = max(ans, find_diameter(i));
find_shortest_path();
}
}
int sz = comp.size();
sort(all(comp));
reverse(all(comp));
if (sz == 1) {}
else if (sz == 2) {
ans = max(ans, L + comp[0] + comp[1]);
} else {
ans = max(ans, L + comp[0] + comp[1]);
ans = max(ans, L + L + comp[1] + comp[2]);
}
return ans;
}
Compilation message
dreaming.cpp: In function 'void find_shortest_path()':
dreaming.cpp:98:7: warning: unused variable 'useless' [-Wunused-variable]
98 | int useless = dfs2(v[0], -1);
| ^~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
72 ms |
12916 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
72 ms |
12916 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
72 ms |
12916 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
34 ms |
7296 KB |
Output is correct |
2 |
Correct |
32 ms |
7800 KB |
Output is correct |
3 |
Correct |
38 ms |
7800 KB |
Output is correct |
4 |
Correct |
32 ms |
7840 KB |
Output is correct |
5 |
Correct |
30 ms |
7680 KB |
Output is correct |
6 |
Correct |
41 ms |
8320 KB |
Output is correct |
7 |
Correct |
33 ms |
8056 KB |
Output is correct |
8 |
Correct |
30 ms |
7680 KB |
Output is correct |
9 |
Correct |
40 ms |
7672 KB |
Output is correct |
10 |
Correct |
34 ms |
7928 KB |
Output is correct |
11 |
Correct |
2 ms |
2688 KB |
Output is correct |
12 |
Correct |
7 ms |
5372 KB |
Output is correct |
13 |
Correct |
8 ms |
5372 KB |
Output is correct |
14 |
Correct |
7 ms |
5244 KB |
Output is correct |
15 |
Correct |
8 ms |
5372 KB |
Output is correct |
16 |
Correct |
7 ms |
5244 KB |
Output is correct |
17 |
Correct |
7 ms |
4856 KB |
Output is correct |
18 |
Correct |
8 ms |
5372 KB |
Output is correct |
19 |
Correct |
7 ms |
5244 KB |
Output is correct |
20 |
Correct |
2 ms |
2688 KB |
Output is correct |
21 |
Correct |
2 ms |
2688 KB |
Output is correct |
22 |
Correct |
2 ms |
2816 KB |
Output is correct |
23 |
Correct |
8 ms |
5244 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
72 ms |
12916 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
72 ms |
12916 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |