이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "stations.h"
#include <bits/stdc++.h>
#define ll long long
#define F first
#define S second
#define pii pair<int, int>
using namespace std;
vector<int> labelss, pre, post;
vector<vector<int>> gr;
int id;
void dfs(int u, int par)
{
pre[u] = ++id;
for (auto x : gr[u])
{
if (x == par)
continue;
dfs(x, u);
}
post[u] = ++id;
}
void labeling(int u, int par, int d)
{
if (d % 2)
labelss[u] = pre[u];
else
labelss[u] = post[u];
cout << labelss[u] << ' ';
for (auto x : gr[u])
{
if (x == par)
continue;
labeling(x, u, d + 1);
}
}
vector<int> label(int n, int k, std::vector<int> u, std::vector<int> v)
{
gr.clear();
post.clear();
pre.clear();
labelss.clear();
gr.resize(n + 1);
labelss.resize(n);
post.resize(n);
pre.resize(n);
for (int i = 0; i < n - 1; i++)
{
gr[u[i]].push_back(v[i]);
gr[v[i]].push_back(u[i]);
}
dfs(0, -1);
labeling(0, -1, 0);
cout << '\n';
return labelss;
}
int find_next_station(int s, int t, std::vector<int> c)
{
bool pst = 1;
int root = -1;
for (auto x : c)
{
if (x > s)
pst = 0;
}
for (auto x : c)
{
if (pst)
root == -1 ? root = x : root = min(root, x);
else
root = max(x, root);
}
int id = root;
if (pst)
{
for (auto x : c)
{
if (x > t)
break;
else
id = x;
}
if (s < t)
id = root;
}
else
{
for (auto x : c)
{
if (x > t)
{
id = x;
break;
}
}
}
return id;
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |