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 "factories.h"
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <set>
#include <map>
#include <queue>
#include <random>
#include <chrono>
#include <tuple>
#include <random>
#include <cmath>
using namespace std;
typedef long long ll;
typedef long double ld;
#define fastInp cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0);
const ll SZ = 5e5 + 10, INF = 1e9 * 1e9;
int sizes[SZ], x[SZ], y[SZ];
bool used[SZ];
vector<vector<pair<ll, ll>>> vec;
vector<vector<pair<ll, ll>>> gr;
ll curC = 0;
vector<ll> bst;
set<ll> u;
ll sz(int v, ll dist = 0, int par = -1) {
ll s = 1;
vec[v].push_back({ curC, dist });
for (auto to : gr[v]) {
if (!used[to.first] && to.first != par) {
s += sz(to.first, dist + to.second, v);
}
}
sizes[v] = s;
return s;
}
ll cntr(int v, int c, int par = -1) {
for (auto to : gr[v]) {
if (to.first != par && !used[to.first] && sizes[to.first] >= c / 2) {
return cntr(to.first, c, v);
}
}
return v;
}
void decomp(int v) {
sz(v);
ll c = cntr(v, sizes[v]);
curC = c;
sz(c);
used[c] = 1;
for (auto to : gr[c]) {
if (!used[to.first]) {
decomp(to.first);
}
}
}
void Init(int N, int A[], int B[], int D[]) {
gr.clear();
vec.clear();
bst.clear();
gr.resize(N);
vec.resize(N);
for (int i = 0; i < N - 1; i++) {
gr[A[i]].push_back({ B[i], D[i] });
gr[B[i]].push_back({ A[i], D[i] });
}
bst.resize(N);
for (auto &c : bst) c = INF;
decomp(0);
}
long long Query(int S, int X[], int T, int Y[]) {
for (int i = 0; i < S; i++) {
ll ind = X[i];
for (auto cur : vec[ind]) {
u.insert(cur.first);
bst[cur.first] = min(bst[cur.first], cur.second);
}
}
ll ans = INF;
for (int i = 0; i < T; i++) {
ll ind = Y[i];
for (auto cur : vec[ind]) {
ans = min(ans, bst[cur.first] + cur.second);
}
}
for (auto cur : u) bst[cur] = INF;
u.clear();
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |