# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
436490 | mat_v | Simurgh (IOI17_simurgh) | C++14 | 308 ms | 5236 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 "simurgh.h"
#include <bits/stdc++.h>
#define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
#define pb push_back
#define pii pair<int,int>
#define xx first
#define yy second
using namespace std;
pii ed[500005];
int _n;
int disc[505];
bool bio[505];
vector<pii> graf[505];
pii cale[505];
vector<pii> gore[505];
int br=1;
int odg[500005];
int out[505];
void dfs(int x){
disc[x] = br;
bio[x] = 1;
for(auto c:graf[x]){
if(bio[c.xx])continue;
cale[c.xx] = {x,c.yy};
br++;
dfs(c.xx);
}
br++;
out[x] = br;
}
set<int> s;
int poc;
int dsu[505];
int finddsu(int x){
if(x == dsu[x])return x;
return dsu[x] = finddsu(dsu[x]);
}
int pitaj(){
vector<int> r;
for(auto c:s)r.pb(c);
ff(i,0,_n-1)dsu[i] = i;
for(auto c:r){
if(finddsu(ed[c].xx) == finddsu(ed[c].yy))assert(false);
dsu[finddsu(ed[c].xx)] = finddsu(ed[c].yy);
}
return count_common_roads(r);
}
vector<pii> sad;
vector<int> ans;
vector<int> imam;
void resi(int x){
for(auto c:graf[x]){
if(cale[c.xx].xx == x)resi(c.xx);
}
if(x == 0)return;
int i = x;
sad.clear();
int mks = poc;
sad.pb({poc,cale[i].yy});
bool da = 0;
for(auto c:gore[i]){
s.erase(cale[i].yy);
s.insert(c.yy);
int sta = pitaj();
if(sta != poc)da = 1;
mks = max(mks, sta);
sad.pb({sta, c.yy});
s.erase(c.yy);
s.insert(cale[i].yy);
}
if(da){
for(auto c:sad){
if(c.xx == mks){
ans.pb(c.yy);
odg[c.yy] = 1;
}
}
}
else{
bool ima = 0;
for(auto c:imam){
int mn = min(disc[ed[c].xx], disc[ed[c].yy]);
int ms = max(disc[ed[c].xx], disc[ed[c].yy]);
if(mn < disc[x] && ms > disc[x] && ms < out[x]){
ima = 1;
s.erase(cale[i].yy);
s.insert(c);
int kurac = pitaj();
if(kurac == poc){
odg[cale[i].yy] = odg[c];
}
else if(kurac < poc)odg[cale[i].yy] = 1;
s.erase(c);
s.insert(cale[i].yy);
break;
}
}
if(!ima)odg[cale[i].yy] = 1;
if(odg[cale[i].yy] == 1){
for(auto c:sad){
odg[c.yy] = 1;
ans.pb(c.yy);
}
}
}
for(auto c:gore[i])imam.pb(c.yy);
}
std::vector<int> find_roads(int n, std::vector<int> u, std::vector<int> v) {
std::vector<int> r(n - 1);
int m = u.size();
_n = n;
ff(i,0,m - 1){
ed[i] = {u[i],v[i]};
graf[u[i]].pb({v[i],i});
graf[v[i]].pb({u[i],i});
}
ff(i,0,n - 1)cale[i].xx = -1;
dfs(0);
ff(i,0,m - 1){
int prvi = u[i];
int drugi = v[i];
if(cale[prvi].xx == drugi || cale[drugi].xx == prvi)continue;
if(disc[prvi] < disc[drugi]){
gore[drugi].pb({prvi,i});
}
else gore[prvi].pb({drugi,i});
}
ff(i,0,m - 1){
if(cale[u[i]].xx == v[i] || cale[v[i]].xx == u[i])s.insert(i);
}
//cout << "kurcina\n";
poc = pitaj();
resi(0);
int pp = ans.size();
//assert(pp == n-1);
return ans;
}
/*
4 6
0 1
0 2
0 3
1 2
1 3
2 3
0 1 5
*/
Compilation message (stderr)
# | 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... |