#include "citymapping.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int N = 1010;
mt19937 rnd(time(NULL));
int n;
ll dis[N][N];
int A[N], B[N], W[N], tot;
ll d(int i, int j) {
if (i == j) return 0;
if (!dis[i][j]) return dis[i][j] = dis[j][i] = get_distance(i, j);
return dis[i][j];
}
void play(vector<int>& v, int U, int V) {
int m = v.size();
if (m == 1) return;
ll mx = 0;
// U, V is leaf
ll all = d(U, V);
vector<pair<ll, int>> in, rem;
for (auto& x : v) {
if (d(U, x) + d(x, V) == all) in.push_back({ d(V, x), x });
else {
ll extra = (d(U, x) + d(x, V) - all) / 2;
rem.push_back({ d(V, x) - extra, x });
}
}
sort(in.begin(), in.end());
sort(rem.begin(), rem.end());
vector<vector<int>> r;
vector<int> p2, p3;
int p = 0;
for (int i = 1;i < (int)in.size();i++) {
A[tot] = in[i - 1].second;
B[tot] = in[i].second;
W[tot] = in[i].first - in[i - 1].first;
tot++;
vector<int> nw;
ll mn = LLONG_MAX;
int idx = 0;
while (p < (int)rem.size() && rem[p].first == in[i].first) {
int vl = rem[p].second;
ll extra = (d(U, vl) + d(vl, V) - all) / 2;
if (extra < mn) {
mn = extra;
idx = vl;
}
nw.push_back(vl);
p++;
}
if (!nw.empty()) {
A[tot] = idx;
B[tot] = in[i].second;
W[tot] = mn;
tot++;
ll mx = -1;
int idx2 = 0;
for (auto& x : nw) {
dis[idx][x] = dis[x][idx] = d(U, x) - mn - in[i].first;
if (dis[idx][x] > mx) {
mx = dis[idx][x];
idx2 = x;
}
}
r.push_back(nw);
p2.push_back(idx);
p3.push_back(idx2);
}
}
for (int i = 0;i < (int)r.size();i++) {
play(r[i], p2[i], p3[i]);
}
}
void find_roads(int NN, int Q, int A[], int B[], int W[]) {
n = NN;
vector<int> init(n);
iota(init.begin(), init.end(), 1);
int leaf = 0, leaf2 = 0;
ll mx = 0;
for (int i = 2;i <= n;i++) {
if (d(1, i) > mx) {
mx = d(1, i);
leaf = i;
}
}
mx = 0;
for (int i = 1;i <= n;i++) {
if (d(leaf, i) > mx) {
mx = d(leaf, i);
leaf2 = i;
}
}
play(init, leaf, leaf2);
for (int i = 0;i < n - 1;i++) {
A[i] = ::A[i];
B[i] = ::B[i];
W[i] = ::W[i];
//cout << A[i] << ' ' << B[i] << ' ' << W[i] << '\n';
}
return;
}
Compilation message
citymapping.cpp: In function 'void play(std::vector<int>&, int, int)':
citymapping.cpp:18:5: warning: unused variable 'mx' [-Wunused-variable]
18 | ll mx = 0;
| ^~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
8536 KB |
Correct: 2991 out of 500000 queries used. |
2 |
Correct |
2 ms |
8284 KB |
Correct: 2994 out of 500000 queries used. |
3 |
Incorrect |
2 ms |
8028 KB |
get_distance() arguments out of range. |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
8536 KB |
Correct: 2991 out of 500000 queries used. |
2 |
Correct |
2 ms |
8284 KB |
Correct: 2994 out of 500000 queries used. |
3 |
Incorrect |
2 ms |
8028 KB |
get_distance() arguments out of range. |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
8280 KB |
Correct: 2967 out of 12000 queries used. |
2 |
Correct |
2 ms |
8028 KB |
Correct: 2973 out of 12000 queries used. |
3 |
Correct |
2 ms |
8028 KB |
Correct: 2994 out of 12000 queries used. |
4 |
Correct |
2 ms |
8092 KB |
Correct: 2973 out of 12000 queries used. |
5 |
Correct |
2 ms |
8536 KB |
Correct: 2967 out of 12000 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
8280 KB |
Correct: 2967 out of 12000 queries used. |
2 |
Correct |
2 ms |
8028 KB |
Correct: 2973 out of 12000 queries used. |
3 |
Correct |
2 ms |
8028 KB |
Correct: 2994 out of 12000 queries used. |
4 |
Correct |
2 ms |
8092 KB |
Correct: 2973 out of 12000 queries used. |
5 |
Correct |
2 ms |
8536 KB |
Correct: 2967 out of 12000 queries used. |
6 |
Correct |
3 ms |
8540 KB |
Correct: 2988 out of 12000 queries used. |
7 |
Correct |
2 ms |
8028 KB |
Correct: 2982 out of 12000 queries used. |
8 |
Correct |
2 ms |
8284 KB |
Correct: 2994 out of 12000 queries used. |
9 |
Correct |
2 ms |
8284 KB |
Correct: 2985 out of 12000 queries used. |
10 |
Correct |
2 ms |
8284 KB |
Correct: 2976 out of 12000 queries used. |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
8536 KB |
Correct: 2991 out of 500000 queries used. |
2 |
Correct |
2 ms |
8284 KB |
Correct: 2994 out of 500000 queries used. |
3 |
Incorrect |
2 ms |
8028 KB |
get_distance() arguments out of range. |
4 |
Halted |
0 ms |
0 KB |
- |