답안 #861374

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
861374 2023-10-16T04:45:28 Z Faisal_Saqib Pipes (CEOI15_pipes) C++17
40 / 100
764 ms 51732 KB
#include <iostream>
#include <algorithm>
#include <climits>
#include <cmath>
#include <map>
#include <set>
#include <bitset>
#include <iomanip>
#include <vector>

using namespace std;

const int MAXN=1e5+1;
const int LG=17;
int pa[MAXN][LG];
int par[MAXN];
int par1[MAXN];
int h[MAXN];
int Up[MAXN];
bitset<MAXN> vis;
vector<int> ma[MAXN];
int get1(int& a)
{
	return ((par1[a]==a)?a:par1[a]=get1(par1[a]));
}
void join1(int a,int b)
{
	a=get1(a);
	b=get1(b);
	if(a!=b)
		par1[a]=b;
}
int get(int& a)
{
	return ((par[a]==a)?a:par[a]=get(par[a]));
}
bool join(int a,int b)
{
	a=get(a);
	b=get(b);
	if(a!=b)
	{
		par[a]=b;
		return 1;
	}
	return 0;
}
void dfs(int& x,int& p)
{
	// cout<<x<<' '<<p<<endl;
	pa[x][0]=p;
	for(int j=1;j<LG;j++)
		pa[x][j]=pa[pa[x][j-1]][j-1];
	h[x]=h[p]+1;
	for(auto y:ma[x])
		if(y!=p)
			dfs(y,x);
}
int lca(int x,int y)
{
	if(h[x]>h[y])
		swap(x,y);
	for(int j=LG-1;j>=0;j--)
		if(h[x]<=h[pa[y][j]])
			y=pa[y][j];
	if(x==y)
		return x;
	for(int j=LG-1;j>=0;j--)
		if(pa[x][j]!=pa[y][j])
		{
			x=pa[x][j];
			y=pa[y][j];
		}
	return pa[x][0];
}
void solve(int& x,int& p)
{
	vis[x]=1;
	for(auto y:ma[x])
	{
		if(y!=p)
		{
			solve(y,x);
		}
	}
	for(auto y:ma[x])
	{
		if(y!=p)
		{
			if(h[Up[x]]>h[Up[y]])
			{
				Up[x]=Up[y];
			}
			if(Up[y]==y)
			{
				cout<<x<<' '<<y<<endl;
			}
		}
	}
}
int main(){
	ios::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);
    int n,m;
    cin>>n>>m;
    for(int i=1;i<=n;i++)
    	par[i]=par1[i]=Up[i]=i;
    for(int i=0;i<m;i++)
    {
    	int x,y;
    	cin>>x>>y;
    	if(join(x,y))
    	{
    		// cout<<"Tree Edge "<<x<<' '<<y<<endl;
    		ma[x].push_back(y);
    		ma[y].push_back(x);
    	}
    	else
    	{
    		// cout<<"Cycle Edge "<<x<<' '<<y<<endl;
    		join1(x,y);
    	}
    }
    // cout<<"Tree Input:\n";
    for(int i=1;i<=n;i++)
    	if(pa[i][0]==0)
		    dfs(i,i);
	// cout<<"Cycle Input:"<<endl;
    for(int y=1;y<=n;y++)
    {
    	int x=get1(y);
    	// cout<<y<<' '<<x<<endl;
    	int c=lca(x,y);
		if(h[Up[x]]>h[c])
		{
			Up[x]=c;
		}
		if(h[Up[y]]>h[c])
		{
			Up[y]=c; 
		}
    }
    // cout<<"Bridge Edges:\n";
    for(int i=1;i<=n;i++)
    	if(!vis[i])
		    solve(i,i);
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 4696 KB Output is correct
2 Correct 1 ms 4700 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 4956 KB Output is correct
2 Correct 4 ms 4928 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 67 ms 7912 KB Output is correct
2 Correct 64 ms 7632 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 113 ms 12260 KB Output is correct
2 Correct 130 ms 12884 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 194 ms 15948 KB Output is correct
2 Runtime error 170 ms 21516 KB Memory limit exceeded
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 277 ms 23792 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 398 ms 30288 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 538 ms 36760 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 620 ms 42064 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 764 ms 51732 KB Memory limit exceeded
2 Halted 0 ms 0 KB -