# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
420542 | SSRS | Split the Attractions (IOI19_split) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
void dfs(vector<vector<int>> &E, vector<bool> &used, vector<int> &p, int v){
p.push_back(v);
for (int w : E[v]){
if (!used[w]){
used[w] = true;
dfs(E, used, p, w);
}
}
}
vector<int> find_split(int n, int a, int b, int c, vector<int> p, vector<int> q){
int m = p.size();
vector<vector<int>> E(n);
for (int i = 0; i < m; i++){
E[p[i]].push_back(q[i]);
E[q[i]].push_back(p[i]);
}
for (int i = 0; i < n; i++){
assert(E[i].size() == 2);
}
int s = 0;
for (int i = 0; i < n; i++){
if (E[i].size() == 1){
s = i;
}
}
vector<bool> used(n, false);
vector<int> p;
dfs(E, used, p, s);
vector<int> ans(n);
for (int i = 0; i < a; i++){
ans[p[i]] = 1;
}
for (int i = a; i < a + b; i++){
ans[p[i]] = 2;
}
for (int i = a + b; i < a + b + c; i++){
ans[p[i]] = 3;
}
return ans;
}