# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1014805 | alex_2008 | Split the Attractions (IOI19_split) | C++14 | 52 ms | 12756 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "split.h"
#include <iostream>
#include <cmath>
#include <vector>
#include <set>
#include <map>
#include <algorithm>
#include <queue>
using namespace std;
typedef long long ll;
const int N = 1e5 + 10, M = 110;
bool used[N];
vector <vector<int>> G;
int sz;
vector <int> esim;
void dfs(int v) {
if (used[v]) return;
if ((int)esim.size() == sz) return;
esim.push_back(v);
used[v] = true;
for (auto it : G[v]) {
dfs(it);
}
}
vector<int> find_split(int n, int A, int B, int C, vector<int> p, vector<int> q) {
int m = (int)p.size();
bool sb1 = true, sb2 = true;
G.resize(n);
for (int i = 0; i < m; i++) {
G[p[i]].push_back(q[i]);
G[q[i]].push_back(p[i]);
}
for (int i = 0; i < n; i++) {
if ((int)G[i].size() > 2) sb1 = false;
}
if (sb1) {
int a = -1, b = -1;
for (int i = 0; i < n; i++) {
if ((int)G[i].size() == 1) {
if (a == -1) a = i;
else b = i;
}
}
if (a == -1) a = 0;
vector <int> v;
v.push_back(a);
v.push_back(G[a][0]);
while ((int)v.size() < n) {
int a = v[(int)v.size() - 1];
int b = v[(int)v.size() - 2];
if (G[a][0] == b) v.push_back(G[a][1]);
else v.push_back(G[a][0]);
}
vector <int> ans(n);
for (int i = 0; i < n; i++) {
if (i < A) ans[v[i]] = 1;
else if (i < A + B) ans[v[i]] = 2;
else ans[v[i]] = 3;
}
return ans;
}
sb2 = (A == 1);
if (sb2) {
sz = B;
dfs(0);
vector <int> ans(n);
bool al = true;
for (int i = 0; i < n; i++) {
if (used[i]) ans[i] = 2;
else {
if (al) {
al = false;
ans[i] = 1;
}
else ans[i] = 3;
}
}
return ans;
}
}
/*int main() {
}*/
컴파일 시 표준 에러 (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... |