# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
583767 | joelau | Split the Attractions (IOI19_split) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "split.h"
#include <bits/stdc++.h>
using namespace std;
int N,M,A,B,C;
vector<int> lst[100005], ans;
queue<int> q;
vector<int> find_split(int n, int a, int b, int c, vector<int> p, vector<int> q) {
N = n, M = p.size(), A = a, B = b, C = c;
for (int i = 0; i < M; ++i) lst[p[i]].push_back(q[i]), lst[q[i]].push_back(p[i]);
ans.assign(N,3);
ans[0] = 2;
q.push(0);
int cnt = 1;
while (!q.empty() && cnt < B) {
int u = q.front(); q.pop();
for (int v: lst[u]) if (ans[v] == 3) {
ans[v] = 2, cnt++;
if (cnt >= B) break;
}
}
for (int i = 0; i < N; ++i) if (ans[i] == 3) {
ans[i] = 1;
break;
}
return ans;
}