# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
797613 | elpro123 | Thousands Islands (IOI22_islands) | C++17 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "islands.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> find_journey(int N, int M, vector<int> U, vector<int> V){
vector<int> a, b;
for (int i = 0; i < M; i++) {
if (U[i] == 0) {
a.push_back(i);
} else {
b.push_back(i);
}
}
if (a.size() >= 2 && b.size() >= 1) {
return vector{a[0], b[0], a[1], a[0], b[0], a[1]};
} else {
return {};
}
}