# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1076925 | Ignut | 수천개의 섬 (IOI22_islands) | C++17 | 58 ms | 14168 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/* Ignut
started: 11.08.2024
now: 26.08.2024
████████████████████████████████████████████████████████████████████
████████████████████████████████ ████████████████████████████████
██████████████████████████████ ██████████████████████████████
██████ ██████████████████ ██████████████████ ██████
██████ ██████████████ ██████████████ ██████
██████ ██ ████████████ ████████████ ██ ██████
██████ ████ ██████████ ██████████ ████ ██████
██████ ████ ██████████ ██████████ ████ ██████
██████ ████ ██████████ ██████████ ██████ ██████
██████ ██████ ██████████ ██████████ ██████ ██████
██████ ██████ ████████ ████████ ██████ ██████
██████ ██████ ██████ ██████ ██████ ██████
██████ ████ ████ ████ ████ ██████
██████ ██████████ ████ ██████████ ██████
██████ ██ ██████ ████████ ██████ ██ ██████
██████ ██████ ████████ ██████ ██████
██████ ██ ██ ██████
██████████████████████ ████ ████ ██████████████████████
████████████████████████ ██ ██ ████████████████████████
██████████████████████████ ██████████████████████████
██████████████████████████████ ██████████████████████████████
████████████████████████████████████████████████████████████████████
*/
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int MAXN = 1e5 + 123;
int n;
vector<pair<int, int>> g[MAXN];
int used[MAXN];
vector<int> order;
bool ans = false;
int startCycle = -1;
void dfs(int v) {
if (ans) return;
used[v] = 1;
order.push_back(v);
// cout << "go " << v << '\n';
for (auto [to, e] : g[v]) {
if (ans) return;
if (used[to] == 2)
continue;
if (used[to] == 1) {
// cout << "find cycle to " << to << '\n';
ans = true;
startCycle = to;
return;
}
if (ans) return;
dfs(to);
}
if (ans) return;
used[v] = 2;
// cout << "delete " << v << '\n';
order.pop_back();
}
int cnt[MAXN] = {};
variant<bool, vector<int>> find_journey(int N, int M, vector<int> U, vector<int> V) {
n = N;
map<pair<int, int>, int> idx;
for (int i = 0; i < M; i += 2) {
g[U[i]].push_back({V[i], i});
idx[{U[i], V[i]}] = i;
}
dfs(0);
if (!ans) return false;
vector<int> path, cycle;
bool onC = false;
for (int v : order) {
if (v == startCycle) onC = true;
if (onC) cycle.push_back(v);
else path.push_back(v);
}
path.push_back(startCycle);
// for (int v : path) cout << v << ' ';
// cout << '\n';
vector<int> res;
for (int i = 1; i < path.size(); i ++)
res.push_back(idx[{path[i - 1], path[i]}]);
vector<int> ci;
for (int i = 0; i < cycle.size(); i ++) {
int u = cycle[i], v = cycle[(i + 1) % cycle.size()];
ci.push_back(idx[{u, v}]);
}
for (int e : ci) res.push_back(e);
for (int e : ci) res.push_back(e + 1);
reverse(ci.begin(), ci.end());
for (int e : ci) res.push_back(e);
for (int e : ci) res.push_back(e + 1);
for (int i = int(path.size()) - 1; i > 0; i --) {
res.push_back(idx[{path[i - 1], path[i]}]);
}
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... |