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<bits/stdc++.h>
#include "islands.h"
using namespace std;
#define ll long long
#define pb push_back
#define ff first
#define ss second
#define all(s) s.begin(),s.end()
#define rall(s) s.rbegin(),s.rend()
const int maxn=2e5+5;
int n,m;
set<pair<int,int>>adj[maxn];
vector<int>ans,r;
bool solve(int x){
if(adj[x].size()==0) return false;
if(adj[x].size()==1){
auto [y,sail]=*adj[x].begin();
adj[x].erase(adj[x].begin());
ans.pb(sail);
r.pb(sail);
return solve(y);
}
else{
auto [y,sail]=*adj[x].begin();
adj[x].erase(adj[x].begin());
auto [z,sail2]=*adj[x].begin();
adj[x].erase(adj[x].begin());
ans.pb(sail);
ans.pb(sail^1);
ans.pb(sail2);
ans.pb(sail2^1);
ans.pb(sail^1);
ans.pb(sail);
ans.pb(sail2^1);
ans.pb(sail2);
return true;
}
}
variant<bool,vector<int>>find_journey(int N,int M,vector<int>U,vector<int>V){
//sub3
n=N,m=M;
for(int i=0;i<m;i++){
adj[U[i]].insert({V[i],0});
}
if(solve(0)==true){
reverse(all(r));
ans.insert(ans.end(),all(r));
return ans;
}
return false;
}
# | 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... |