| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1325021 | eri16 | 수천개의 섬 (IOI22_islands) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
#include "islands.h"
using namespace std;
variant<bool, vector<int>> find_journey(int n, int m, vector<int> u, vector<int> v){
vector <int> v;
v.push_back(1);
return v;
}