이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "split.h"
using namespace std;
vector<signed> find_split(signed n, signed a, signed b, signed c, vector<signed> p, vector<signed> q) {
vector<signed> res(n);
vector<vector<int> > g(n);
int m = p.size();
vector<bool> vis(n);
for(int i = 0; i < m; ++i) {
const int u = p[i];
const int v = q[i];
g[u].push_back(v);
g[v].push_back(u);
}
bool ok = false;
for(int i = 0; i < n; ++i) {
if(g[i].size() == 1u) {
ok = true;
res[i] = 1;
vis[i] = true;
break;
}
}
if(!ok) {
res[0] = 1;
vis[0] = true;
}
int startv = 0;
while(res[startv]) {
startv++;
}
int quota = b;
auto b_dfs = [&](auto&& dfs, int u) -> void
{
assert(quota >= 0);
if(quota == 0) {
return;
}
assert(!vis[u] and !res[u]);
vis[u] = true;
res[u] = 2;
quota--;
for(int to : g[u]) {
if(!vis[to]) {
dfs(dfs, to);
assert(quota >= 0);
if(quota == 0) {
return;
}
}
}
};
b_dfs(b_dfs, startv);
for(int i = 0; i < n; ++i) {
if(!res[i]) {
res[i] = 3;
}
}
return res;
}
/*
6 5
1 3 2
0 1
0 2
0 3
0 4
0 5
*/
# | 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... |