# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
146701 |
2019-08-25T11:31:17 Z |
MvC |
Pipes (CEOI15_pipes) |
C++11 |
|
1529 ms |
65536 KB |
#pragma GCC target("avx2")
#pragma GCC optimization("O3")
#pragma GCC optimization("unroll-loops")
#include<bits/stdc++.h>
//#include "boxes.h"
#define rc(x) return cout<<x<<endl,0
#define pb push_back
#define mkp make_pair
#define in insert
#define er erase
#define fd find
#define fr first
#define sc second
typedef long long ll;
typedef long double ld;
const ll INF=0x3f3f3f3f3f3f3f3f;
const ll llinf=(1LL<<62);
const int inf=(1<<30);
const int nmax=1e5+50;
const int mod=1e9+7;
using namespace std;
int n,m,i,x,y,p[nmax],p1[nmax],sz[nmax],sz1[nmax],fup[nmax],fin[nmax],tin;
vector<int>a[nmax];
int fnd(int x)
{
if(p[x]==x)return x;
return p[x]=fnd(p[x]);
}
void uni(int x,int y)
{
a[x].pb(y);
a[y].pb(x);
x=fnd(x),y=fnd(y);
if(sz[x]<sz[y])swap(x,y);
sz[x]+=sz[y];
p[y]=x;
}
int fnd1(int x)
{
if(p1[x]==x)return x;
return p1[x]=fnd1(p1[x]);
}
void uni1(int x,int y)
{
a[x].pb(y);
a[y].pb(x);
x=fnd1(x),y=fnd1(y);
if(sz1[x]<sz1[y])swap(x,y);
sz1[x]+=sz1[y];
p1[y]=x;
}
void dfs(int x,int pr=-1)
{
fin[x]=fup[x]=++tin;
for(int i=0;i<a[x].size();i++)
{
int y=a[x][i];
if(y==pr)continue;
if(!fin[y])
{
dfs(y,x);
fup[x]=min(fup[x],fup[y]);
if(fup[y]>fin[x])cout<<x<<" "<<y<<'\n';
}
else fup[x]=min(fup[x],fin[y]);
}
}
int main()
{
//freopen("sol.in","r",stdin);
//freopen("sol.out","w",stdout);
//mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
ios_base::sync_with_stdio(false);cin.tie(0);cerr.tie(0);cout.tie(0);
cin>>n>>m;
for(i=1;i<=n;i++)
{
p[i]=i;
sz[i]=1;
p1[i]=i;
sz1[i]=1;
}
while(m--)
{
cin>>x>>y;
if(fnd(x)!=fnd(y))
{
uni(x,y);
//cout<<x<<" "<<y<<endl;
}
else if(fnd1(x)!=fnd1(y))
{
uni1(x,y);
//cout<<x<<" "<<y<<endl;
}
}
cout<<endl;
for(i=1;i<=n;i++)
{
if(fin[i])continue;
dfs(i);
}
return 0;
}
Compilation message
pipes.cpp:2:0: warning: ignoring #pragma GCC optimization [-Wunknown-pragmas]
#pragma GCC optimization("O3")
pipes.cpp:3:0: warning: ignoring #pragma GCC optimization [-Wunknown-pragmas]
#pragma GCC optimization("unroll-loops")
pipes.cpp: In function 'void dfs(int, int)':
pipes.cpp:55:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0;i<a[x].size();i++)
~^~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
2680 KB |
Output is correct |
2 |
Incorrect |
4 ms |
2680 KB |
Wrong number of edges |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
9 ms |
3412 KB |
Output is correct |
2 |
Incorrect |
9 ms |
3064 KB |
Wrong number of edges |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
127 ms |
8584 KB |
Output is correct |
2 |
Incorrect |
125 ms |
8312 KB |
Wrong number of edges |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
220 ms |
13516 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
362 ms |
21736 KB |
Memory limit exceeded (if you are sure your verdict is not MLE, please contact us) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
517 ms |
31876 KB |
Memory limit exceeded (if you are sure your verdict is not MLE, please contact us) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
770 ms |
45760 KB |
Memory limit exceeded (if you are sure your verdict is not MLE, please contact us) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1034 ms |
58676 KB |
Memory limit exceeded (if you are sure your verdict is not MLE, please contact us) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1247 ms |
65536 KB |
Memory limit exceeded (if you are sure your verdict is not MLE, please contact us) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1529 ms |
65536 KB |
Memory limit exceeded (if you are sure your verdict is not MLE, please contact us) |
2 |
Halted |
0 ms |
0 KB |
- |