# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
433525 | JUANDI321 | Split the Attractions (IOI19_split) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "split.h"
#include <vector>
using namespace std;
vector<vector<int>> g;
vector<int> res;
int aa, bb, cc;
void dfs(int node, int ant)
{
if(a>0)
{
res[node]=1;
a--;
}
else if(b>0)
{
res[node]=2;
b--;
}
else
{
res[node]=3;
c--;
}
for(int y : g[node])
{
if(y!=ant)
{
dfs(y, node);
}
}
}
vector<int> find_split(int n, int a, int b, int c, vector<int> p, vector<int> q)
{
aa = a;
bb = b;
cc = c;
//vector<int> res;
for(int i = 0; i<p.size(); i++)
{
g[p[i]].push_back(q[i]);
g[q[i]].push_back(p[i]);
}
int node =0;
for(int i = 0; i<n; i++)
{
if(g[i].size()==1)
{
node = i;
break;
}
}
dfs(node, -1);
return res;
}