이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "islands.h"
#include<bits/stdc++.h>
using namespace std;
variant<bool, vector<int>> find_journey(int N, int M, vector<int> U, vector<int> V) {
//vector<int> find_journey(int N, int M, vector<int> U, vector<int> V) {
vector<map<int, vector<int>>> adj(N);
vector<int> out(N);
for(int i = 0; i < M; ++i) {
adj[U[i]][V[i]].push_back(i);
++out[U[i]];
}
int cur = 0, prev = -1;
vector<int> way, ans;
while(1) {
int cs = out[cur] - (prev != -1);
if(cs == 0) return false;
if(cs == 1) for(auto& u : adj[cur]) if(u.first != prev) { way.push_back(u.second[0]); prev = cur; cur = u.first; continue; }
break;
}
/* ans = way;
vector<int> z;
for(auto& u : adj[cur]) if(u.first != prev) {
for(auto& v : u.second) {
z.push_back(v);
if((int)z.size() == 2) break;
}
if((int)z.size() == 2) break;
}
ans.push_back(z[0]);
ans.push_back(z[0] / 2 * 4 + 1 - z[0]);
ans.push_back(z[1]);
ans.push_back(z[1] / 2 * 4 + 1 - z[1]);
ans.push_back(z[0] / 2 * 4 + 1 - z[0]);
ans.push_back(z[0]);
ans.push_back(z[1] / 2 * 4 + 1 - z[1]);
ans.push_back(z[1]);
reverse(begin(way), end(way));
for(auto& u : way) ans.push_back(u);
return ans;*/
return true;
}
# | 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... |