#include "factories.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> ii;
#define pb(x) push_back(x)
#define mp(x, y) make_pair(x, y)
int _N;
vector<vector<ii> > edges;
int parent[500000][20];
int depth[500000];
ll rootdist[500000];
int twopow[20];
void dfs(int x, int d, ll dst) {
depth[x] = d;
rootdist[x] = dst;
for (int i = 0; i < edges[x].size(); i++) {
if (edges[x][i].first == parent[x][0]) continue;
parent[edges[x][i].first][0] = x;
dfs(edges[x][i].first, d+1, dst + edges[x][i].second);
}
}
void prt(int x, int e) {
if (depth[x] >= twopow[e]) {
int q = parent[x][e-1];
parent[x][e] = parent[q][e-1];
}
for (int i = 0; i < edges[x].size(); i++) {
if (edges[x][i].first == parent[x][0]) continue;
prt(edges[x][i].first, e);
}
}
int lca(int a, int b) {
if (depth[a] > depth[b]) {
int t = a;
a = b;
b = t;
}
while (depth[b] > depth[a]) {
int dif = depth[b] - depth[a];
//cerr << b << endl;
dif = dif & -dif;
int c = 0;
while (dif >>= 1) c++;
b = parent[b][c];
}
int d = depth[a];
for (int x = 20; x >= 0; x--) {
if (x > d) continue;
if (parent[a][x] != parent[b][x]) {
a = parent[a][x];
b = parent[b][x];
}
}
int ans = a;
if (a != b) ans = parent[a][0];
//cerr << a << " " << b << " " << ans << endl;
return ans;
}
ll dst(int a, int b) {
int c = lca(a, b);
return rootdist[a] + rootdist[b] - 2 * rootdist[c];
}
void Init(int N, int A[], int B[], int D[]) {
_N = N;
edges.resize(N);
for (int i = 0; i < N; i++) {
edges[A[i]].pb(mp(B[i], D[i]));
edges[B[i]].pb(mp(A[i], D[i]));
}
parent[0][0] = -1;
dfs(0, 0, 0);
for (int i = 1; i < 20; i++) {
twopow[i] = (int) pow(2, i);
prt(0, i);
}
}
long long Query(int S, int X[], int T, int Y[]) {
ll best = (ll)1e18;
for (int i = 0; i < S; i++) {
for (int j = 0; j < T; j++) {
best = min(best, dst(X[i], Y[j]));
}
}
return best;
}
Compilation message
factories.cpp: In function 'void dfs(int, int, ll)':
factories.cpp:19:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < edges[x].size(); i++) {
^
factories.cpp: In function 'void prt(int, int)':
factories.cpp:30:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < edges[x].size(); i++) {
^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
96 ms |
69400 KB |
Output is correct |
2 |
Execution timed out |
6000 ms |
69724 KB |
Execution timed out |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
69400 KB |
Output is correct |
2 |
Runtime error |
3536 ms |
99864 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
6000 ms |
99864 KB |
Execution timed out |
2 |
Halted |
0 ms |
0 KB |
- |