# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
232719 | UserIsUndefined | Split the Attractions (IOI19_split) | C++14 | 8 ms | 5120 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
}
컴파일 시 표준 에러 (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... |