# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1080469 | speedcode | Split the Attractions (IOI19_split) | C++17 | 49 ms | 10680 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>
using namespace std;
std::vector<int> find_split(int n, int a, int b, int c, std::vector<int> p, std::vector<int> q){
vector<vector<int>> graphe(n);
for(int i = 0; i < p.size(); i++){
graphe[p[i]].push_back(q[i]);
graphe[q[i]].push_back(p[i]);
}
vector<int> result(n);
fill(result.begin(), result.end(), 3);
int begin = 0;
for(int i = 0; i < n; i++) {
if(graphe[i].size() == 1) begin = i;
}
while(a--) {
result[begin] = 1;
for(auto k : graphe[begin]) {
if(result[k] == 3) {
begin = k;
}
}
}
while(b--) {
result[begin] = 2;
for(auto k : graphe[begin]) {
if(result[k] == 3) {
begin = k;
}
}
}
return result;
}
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... |