# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
502870 | waynetuinfor | 열쇠 (IOI21_keys) | C++17 | 3093 ms | 25660 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <algorithm>
#include <vector>
std::vector<int> find_reachable(std::vector<int> r, std::vector<int> u,
std::vector<int> v, std::vector<int> c) {
int N = r.size(), M = u.size();
std::vector<std::vector<int>> g(N);
std::vector<std::vector<int>> keys(N);
for (int e = 0; e < M; ++e) {
g[u[e]].push_back(e);
g[v[e]].push_back(e);
keys[c[e]].push_back(e);
}
std::vector<bool> vis(N);
std::vector<bool> got(N);
std::vector<int> p(N);
for (int x = 0; x < N; ++x) {
std::fill(vis.begin(), vis.end(), false);
std::fill(got.begin(), got.end(), false);
std::vector<int> que;
auto Push = [&](int p) {
if (got[p]) {
return;
}
got[p] = true;
for (int e : keys[p]) {
if (vis[u[e]] && !vis[v[e]]) {
vis[v[e]] = true;
que.push_back(v[e]);
}
if (vis[v[e]] && !vis[u[e]]) {
vis[u[e]] = true;
que.push_back(u[e]);
}
}
};
vis[x] = true;
que.push_back(x);
for (int it = 0; it < que.size(); ++it) {
int y = que[it];
Push(r[y]);
for (int e : g[y]) {
int z = u[e] ^ v[e] ^ y;
if (got[c[e]] && !vis[z]) {
vis[z] = true;
que.push_back(z);
}
}
}
p[x] = std::count(vis.begin(), vis.end(), true);
}
std::vector<int> res(N);
int t = *std::min_element(p.begin(), p.end());
for (int i = 0; i < N; ++i) {
if (p[i] == t) {
res[i] = 1;
}
}
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... |