# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
630939 | garam1732 | 수천개의 섬 (IOI22_islands) | C++17 | 110 ms | 12552 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "islands.h"
#include <iostream>
#include <variant>
#include <vector>
#include <algorithm>
#include <map>
#define ff first
#define ss second
using namespace std;
typedef pair<int, int> pi;
map<pi, int> m;
vector<pi> adj[100100];
vector<pi> v;
vector<int> ans;
bool visited[100100], chk[100100];
int x = -1;
void dfs(int here) {
//cout << here << endl;
for(pi there : adj[here]) {
if(visited[there.ff]) {
v.push_back(there);
x = there.ff;
return;
}
if(chk[there.ff]) continue;
visited[there.ff] = true;
chk[there.ff] = true;
v.push_back(there);
dfs(there.ff);
if(x != -1) return;
visited[there.ff] = false;
v.pop_back();
}
}
vector<int> em;
//vector<int> find_journey(
std::variant<bool, std::vector<int>> find_journey(
int N, int M, std::vector<int> U, std::vector<int> V) {
for(int i = 0; i < M; i+=2) {
if(m.find(pi(U[i], V[i])) == m.end()) {
adj[U[i]].push_back(pi(V[i], i));
}
//adj[V[i]].push_back(pi(U[i], i));
m[pi(U[i], V[i])] = 1;
}
visited[0] = chk[0] = true;
dfs(0);
if(x == -1) return false;
int i;
for(i = 0; i < v.size(); i++) if(v[i].ff == x) break;
if(i == (int)v.size()-1) i = -1;
for(int j = 0; j <= i; j++) ans.push_back(v[j].ss);
for(int j = i+1; j < v.size(); j++) ans.push_back(v[j].ss);
for(int j = i+1; j < v.size(); j++) ans.push_back(v[j].ss^1);
for(int j = (int)v.size()-1; j > i; j--) ans.push_back(v[j].ss);
for(int j = (int)v.size()-1; j > i; j--) ans.push_back(v[j].ss^1);
for(int j = i; j >= 0; j--) ans.push_back(v[j].ss);
return ans;
// std::vector<int> v, w;
// for(int i = 0; i < M; i++) {
// if(U[i] == 0) v.push_back(i);
// else w.push_back(i);
// }
//
// if(v.size() < 2 || w.size() < 1) {
// return em;
// //return false;
// }
// std::vector<int> ans;
// ans.push_back(v[0]);
// ans.push_back(w[0]);
// ans.push_back(v[1]);
// ans.push_back(v[0]);
// ans.push_back(w[0]);
// ans.push_back(v[1]);
// return ans;
}
컴파일 시 표준 에러 (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... |