이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "meetings.h"
#include <algorithm>
using namespace std;
void Solve(int N) {
int lca[N][N];
for (int i = 1; i < N; ++i) {
for (int j = i + 1; j < N; ++j) lca[i][j] = lca[j][i] = Query(0, i, j);
}
for (int i = 1; i < N; ++i) lca[0][i] = lca[i][0] = 0;
int depth[N], parent[N];
fill_n(depth, N, N + 1);
for (int i = 0; i < N; ++i) {
for (int j = 0; j < N; ++j) {
if (depth[j] == N + 1) {
depth[j] = 0;
parent[j] = -1;
for (int k = 0; k < N; ++k) {
if (k == j || lca[j][k] == j) continue;
if (depth[lca[j][k]] + 1 > depth[j]) depth[j] = min(N, depth[lca[j][k]]) + 1, parent[j] = lca[j][k];
}
}
}
}
for (int i = 0; i < N; ++i) {
if (parent[i] != -1) Bridge(min(i, parent[i]), max(i, parent[i]));
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |