# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1061652 | jamjanek | 수천개의 섬 (IOI22_islands) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "islands.h"
#include <variant>
#include <vector>
#include<bits/stdc++.h>
using namespace std;
int odw[100010];
vector<pair<int, int>>graf[100010];
vector<int>ans;
vector<int>stos;
void dfs(int x, int kra){
if(graf[x].size()>2){
int pom = graf[x][0].second, pom1 = graf[x][1].second;
if(pom/2==kra/2)
pom = graf[x][2].second;
if(pom1/2==kra/2)
pom1 = graf[x][2].second;
ans = stos;
vector<int>POM = {pom, pom^1, pom1, pom1^1, pom^1, pom, pom1^1, pom1};
for(auto j: POM)
ans.push_back(j);
while(stos.size()){
ans.push_back(stos.back()^1);
stos.pop_back();
}
return;
}
for(auto j: graf[x]){
if(kra/2!=j.second/2){
odw[j.first]++;
if(odw[j.first]==1){
stos.push_back(j.second);
dfs(j.first, j.second);
if(ans.size())return;
stos.pop_back();
}
}
}
}
std::variant<bool, std::vector<int>> find_journey(int n, int m, std::vector<int> U, std::vector<int> V) {
int i;
for(i=0;i<m;i+=2){
graf[U[i]].push_back({V[i], i});
graf[V[i]].push_back({U[i], i+1});
}
if(graf[0].size()>1 && ans.size()==0){
ans = {};{graf[0][0].second, graf[0][0].second^1, graf[0][1].second, graf[0][1].second^1, graf[0][0].second^1, graf[0][0].second^1^1, graf[0][1].second^1, graf[0][1].second^1^1,};
return ans;
}
odw[0] = 1;
dfs(0, -2);
if(ans.size()>0)return ans;
return false;
}