# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
233218 | UserIsUndefined | Split the Attractions (IOI19_split) | C++14 | 2086 ms | 103364 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "split.h"
using namespace std;
vector<int> adj[100005];
int children[100005];
bool visited[100005];
vector<int> adj2[100005];
int ans[100005];
int sz;
bool ok;
int doo;
int nn;
int now;
void mark(int v){
ans[v] = now;
for (int i : adj[v]){
if ((ans[i] == 0)&&(sz)){
sz--;
mark(i);
}
}
}
void dfs(int v){
visited[v] = true;
sz++;
for (int i : adj[v]){
if (visited[i] == false){
dfs(i);
children[v]+= children[i];
adj2[v].push_back(i);
}
}
children[v]++;
}
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;
nn = n;
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);
}
for (int i = 0 ; i < p.size() ; i++){
int x = p[i]; int y = q[i];
int sizex = 0 ; int sizey = 0;
visited[x] = true;
visited[y] = true;
sz = 0;
dfs(x);
sizex = sz;
sizey = n - sz;
memset(visited , 0 , sizeof visited);
if (sizex > sizey){swap(sizex , sizey); swap(x , y);}
if ((sizex >= abc[0].first)&&(sizey >= abc[1].first)){
now = abc[0].second;
sz = abc[0].first;
ans[x] = now;
ans[y] = abc[1].second;
sz--;
mark(x);
now = abc[1].second;
sz = abc[1].first;
sz--;
mark(y);
for (int i = 0 ; i < n ; i++){
res[i] = (ans[i] == 0 ? abc[2].second : ans[i]);
}
return res;
}
}
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... |