// In the name of the God
#include "factories.h"
#include <bits/stdc++.h>
#define ll long long
// #define int long long
#define pb push_back
#define F first
#define S second
#define mp make_pair
#define pii pair <int, int>
#define smin(x, y) (x) = min((x), (y))
#define smax(x, y) (x) = max((x), (y))
#define all(x) (x).begin(), (x).end()
using namespace std;
const int inf = 1e9+7;
const int mod = 998244353;
const int maxn = 5e5+5;
int n, sz[maxn], mn[maxn];
bool mark[maxn];
vector <pii> adj[maxn], c[maxn];
void dfs1(int v, int p) {
sz[v] = 1;
for (pii e : adj[v]) {
int u = e.F;
if (!mark[u] and u != p) {
dfs1(u, v); sz[v] += sz[u];
}
}
}
int dfs2(int v, int s, int p) {
for (pii e : adj[v]) {
int u = e.F;
if (!mark[u] and u != p and sz[u] > s/2) return dfs2(u, s, v);
}
return v;
}
void dfs3(int v, int h, int p, int b) {
c[v].pb(mp(b, h));
for (pii e : adj[v]) {
int u = e.F;
if (!mark[u] and u != p) dfs3(u, h+e.S, v, b);
}
}
void cd(int v) {
dfs1(v, v);
v = dfs2(v, sz[v], v);
dfs3(v, 0, v, v);
mark[v] = 1;
for (pii e : adj[v]) {
int u = e.F;
if (!mark[u]) cd(u);
}
}
void Init(int N, int A[], int B[], int D[]) {
n = N;
for (int i = 0; i < n-1; i++) {
adj[A[i]].pb(mp(B[i], D[i]));
adj[B[i]].pb(mp(A[i], D[i]));
}
cd(0);
fill(mn, mn+n, inf);
}
long long Query(int S, int X[], int T, int Y[]) {
int ans = inf;
for (int i = 0; i < S; i++) {
int v = X[i];
for (pii p : c[v]) smin(mn[p.F], p.S);
}
for (int i = 0; i < T; i++) {
int v = Y[i];
for (pii p : c[v]) smin(ans, mn[p.F]+p.S);
}
for (int i = 0; i < S; i++) {
int v = X[i];
for (pii p : c[v]) mn[p.F] = inf;
}
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
17 ms |
46068 KB |
Output is correct |
2 |
Incorrect |
202 ms |
59940 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
12 ms |
45660 KB |
Output is correct |
2 |
Incorrect |
2378 ms |
155456 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
17 ms |
46068 KB |
Output is correct |
2 |
Incorrect |
202 ms |
59940 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |