이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "split.h"
using namespace std;
vector<int> find_split(int n, int a, int b, int c, vector<int> p, vector<int> q) {
vector<int> res(n, 3);
vector<vector<int> > g(n);
for(int i = 0; i < p.size(); i++) {
g[p[i]].push_back(q[i]);
g[q[i]].push_back(p[i]);
}
bool volt = false;
for(int i = 0; i < n; i++) {
if(g[i].size() == 1) {
volt = true;
int x = i, y = g[x][0];
for(int j = 0; j < a; j++) {
res[x] = 1;
int temp = x;
if(g[x][0] == y) {
x = g[x][1];
} else {
x = g[x][0];
}
y = temp;
}
for(int j = 0; j < b; j++) {
res[x] = 2;
int temp = x;
if(g[x][0] == y) {
x = g[x][1];
} else {
x = g[x][0];
}
y = temp;
}
}
}
if(!volt) {
int x = 0, y = -1;
for(int j = 0; j < a; j++) {
res[x] = 1;
int temp = x;
if(g[x][0] == y) {
x = g[x][1];
} else {
x = g[x][0];
}
y = temp;
}
for(int j = 0; j < b; j++) {
res[x] = 2;
int temp = x;
if(g[x][0] == y) {
x = g[x][1];
} else {
x = g[x][0];
}
y = temp;
}
}
/*if (n == 9) {
res = {1, 1, 3, 1, 2, 2, 3, 1, 3};
} else {
res = {0, 0, 0, 0, 0, 0};
}*/
return res;
}
컴파일 시 표준 에러 (stderr) 메시지
split.cpp: In function 'std::vector<int> find_split(int, int, int, int, std::vector<int>, std::vector<int>)':
split.cpp:8:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
8 | for(int i = 0; i < p.size(); i++) {
| ~~^~~~~~~~~~
# | 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... |