# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
632103 | Minindu2006 | 수천개의 섬 (IOI22_islands) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "islands.h"
#include<bits/stdc++.h>
#include <variant>
#include <vector>
using namespace std;
int n, m, can = -1;
vector<int> u, v;
vector<int> adj[1001];
void dfs(int node, vector<int> &ans);
std::variant<bool, std::vector<int>> find_journey(
int N, int M, std::vector<int> U, std::vector<int> V) {
n = N, m = M;
U = u, v = V;
if(m <= 2)
return 0;
int z = 0;
vector<int> cur(3);
for(int i=0;i<m;i++)
{
if(u[i] == 0)
{
if(z < 2)
cur[z] = i;
z++;
}
else
cur[2] = i;
}
if(z <= 1)
return 0;
for(int i=0;i<3;i++)
cur.push_back(cur[i]);
return cur;
}