# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
268159 | wdjpng | Split the Attractions (IOI19_split) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define lint long long
#define rep(i,n) for(int i = 0; i < n; i++)
#define all(a) a.begin(), a.end()
using namespace std;
const int maxn=200000;
int out[maxn];
bool vis[maxn];
int c=0;
vector<int>val(3);
vector<int>s;
vector<vector<int>>E;
void dfs(int i){
if(vis[i]){return;}
vis[i]=true;
c++;
if(c<=s[0]){
out[i]=val[0];
} else if(c<=s[0]+s[1]){
out[i]=val[1];
} else{
out[i]=val[2];
}
for(int w : E[i]){
dfs(w);
}
}
vector<int> find_split(int n, int a, int b, int c, int p[], int q[]){
vector<int>s1={a,b,c};
s=s1;
sort(all(s));
rep(i, sizeof(p)){
E[p[i]].push_back(q[i]);
E[q[i]].push_back(p[i]);
}
rep(i, 3){
rep(j, 3){
if(s1[i]==s[j]){
val[j]=i+1;
}
}
}
dfs(0);
rep(i, n){
cout << out[i] <<" ";
}
}