이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "islands.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
#define all(x) x.begin(), x.end()
#define sz(x) (int)x.size()
#define pb push_back
#define mk make_pair
#define fr first
#define sc second
variant<bool, vector<int>> find_journey(int N, int M, vector<int> U, vector<int> V) {
int edges[N][N];
for(int i = 0; i < M; i++) edges[U[i]][V[i]] = i;
if(N == 2) return false;
vector<int> ans;
ans.pb(edges[0][1]); // 0 pra 1
ans.pb(edges[1][0]); // 1 pra 0
ans.pb(edges[0][2]); // 0 pra 2
ans.pb(edges[2][0]); // 2 pra 0
ans.pb(edges[1][0]); // 0 pra 1
ans.pb(edges[0][1]); // 1 pra 0
ans.pb(edges[2][0]); // 0 pra 2
ans.pb(edges[0][2]); // 2 pra 0
return ans;
}
# | 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... |