# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
232719 | UserIsUndefined | Split the Attractions (IOI19_split) | C++14 | 8 ms | 5120 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#include "split.h"
using namespace std;
vector<int> adj[100005];
vector<int> adj2[100005];
map<int,int> visited;
int children[100005];
vector<pair<int,int>> childidx;
int ans[100005];
int now, sz;
void counter(int s){
visited[s] = true;
for (int i : adj[s]){
if (visited[i] == false){
counter(i);
children[s]+= children[i];
adj2[s].push_back(i);
}
}
children[s]++;
}
void dfs(int v){
visited[v] = true;
ans[v] = now;
for (int i : adj2[v]){
if ((visited[i] == false)&&(sz)){
sz--;
dfs(i);
}
}
}
vector<int> find_split(int n, int a, int b, int c, vector<int> p, vector<int> q) {
vector<int> res(n, 0);
vector<pair<int,int>> abc;
abc.push_back({a, 1});
abc.push_back({b, 2});
abc.push_back({c, 3});
sort(abc.begin() , abc.end());
for (int i = 0 ; i < p.size() ; i++){
int x = p[i];
int y = q[i];
adj[x].push_back(y);
adj[y].push_back(x);
}
counter(0);
for (int i = 0 ; i < n ; i++){
childidx.push_back({children[i], i});
}
sort(childidx.begin(), childidx.end());
visited.clear();
int past = 0;
for (int i = 0 ; i < 2 ; i++){
now = abc[i].second;
sz = abc[i].first;
sz--;
for (int j = past ; j < n ; j++){
if (childidx[j].first >= sz){
dfs(childidx[j].second);
past = j + 1;
break;
}
}
}
for (int i = 0 ; i < n ; i++){
res[i] = (ans[i] == 0 ? abc[2].second : ans[i]);
}
return res;
}
Compilation message (stderr)
# | 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... |