# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
627262 | model_code | 수천개의 섬 (IOI22_islands) | C++17 | 1105 ms | 745980 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// failed/solution-bidirectional.cpp
#include "islands.h"
#include <bits/stdc++.h>
#define edge std::pair<int,int>
std::variant<bool, std::vector<int>> find_journey(int, int M, std::vector<int> U, std::vector<int> V) {
// adj vector
std::vector<edge> path[1111], path_rev[1111];
for (int i = 0; i < M; i++){
path[U[i]].push_back({V[i], i});
path_rev[V[i]].push_back({U[i], i});
}
// move forward until we find a node with > 1 new outdegree (not including the one we come from)
int curr_pos = 0;
int prev = -1;
std::vector<int> sol, tmp;
while (true) {
if (curr_pos == 0 && path[curr_pos].size() == 0) // dead-end
return false;
else if (curr_pos != 0 && path[curr_pos].size() == 1) // dead-end
return false;
// we're at the 0, and and only have 1 path forward
else if (curr_pos == 0 && path[curr_pos].size() == 1) {
int idx = 0;
prev = curr_pos;
# | 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... |