Submission #96890

# Submission time Handle Problem Language Result Execution time Memory
96890 2019-02-12T15:49:43 Z Retro3014 Pipes (CEOI15_pipes) C++17
0 / 100
1507 ms 11608 KB
#include <iostream>
#include <vector>
#include <stdio.h>
#include <algorithm>

#define MAX_N 100000

using namespace std;

int N, M;
vector<int> gp[MAX_N+1];
int g1[MAX_N+1], g2[MAX_N+1];
int up[MAX_N+1], lv[MAX_N+1], p[MAX_N+1];

void init(){
	for(int i=1; i<=N; i++)	g1[i] = g2[i] = i;
}

int find_g1(int x){
	if(x==g1[x])	return x;
	return g1[x] = find_g1(g1[x]);
}

int find_g2(int x){
	if(x==g2[x])	return x;
	return g2[x] = find_g2(g2[x]);
}

void union_g1(int x, int y){
	x = find_g1(x); y = find_g1(y);
	g1[x] = y;
}

void union_g2(int x, int y){
	x = find_g2(x); y = find_g2(y);
	g2[x] = y;
}

bool vst[MAX_N+1];
bool tf;
void dfs(int x){
	tf = true;
	up[x] = lv[x];
	vst[x] = true;
	for(int i=0; i<gp[x].size(); i++){
		if(gp[x][i]==p[x] && tf){
			tf = false; continue;
		}	
		if(vst[gp[x][i]]){
			up[x] = min(up[x], lv[gp[x][i]]);
		}else{
			p[gp[x][i]] = x;
			lv[gp[x][i]] = lv[x]+1;
			dfs(gp[x][i]);
			if(up[gp[x][i]]>lv[x]){
				printf("%d %d\n", gp[x][i], x);
			}
			up[x] = min(up[x], up[gp[x][i]]);
		}
	}
}

int main(){
	scanf("%d %d", &N, &M);
	init();
	int a, b;
	while(M--){
		scanf("%d%d", &a, &b);
		if(find_g1(a)!=find_g1(b)){
			union_g1(a, b);
			gp[a].push_back(b);
			gp[b].push_back(a);
		}
		else if(find_g2(a)!=find_g2(b)){
			union_g2(a, b);
			gp[a].push_back(b);
			gp[b].push_back(a);
		}
	}
	for(int i=1; i<=N; i++){
		if(!vst[i]){
			lv[i] = 1;
			dfs(i);
		}
	}
	return 0;
}

Compilation message

pipes.cpp: In function 'void dfs(int)':
pipes.cpp:45:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i=0; i<gp[x].size(); i++){
               ~^~~~~~~~~~~~~
pipes.cpp: In function 'int main()':
pipes.cpp:64:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d", &N, &M);
  ~~~~~^~~~~~~~~~~~~~~~~
pipes.cpp:68:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d%d", &a, &b);
   ~~~~~^~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 2688 KB Wrong number of edges
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 8 ms 3072 KB Wrong number of edges
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 121 ms 3028 KB Output is correct
2 Incorrect 118 ms 2888 KB Wrong number of edges
# Verdict Execution time Memory Grader output
1 Correct 211 ms 3580 KB Output is correct
2 Incorrect 245 ms 3300 KB Wrong number of edges
# Verdict Execution time Memory Grader output
1 Correct 343 ms 4764 KB Output is correct
2 Incorrect 297 ms 4668 KB Wrong number of edges
# Verdict Execution time Memory Grader output
1 Correct 502 ms 8900 KB Output is correct
2 Incorrect 464 ms 7328 KB Wrong number of edges
# Verdict Execution time Memory Grader output
1 Correct 836 ms 9900 KB Output is correct
2 Incorrect 807 ms 8184 KB Wrong number of edges
# Verdict Execution time Memory Grader output
1 Correct 1186 ms 11596 KB Output is correct
2 Incorrect 991 ms 9172 KB Wrong number of edges
# Verdict Execution time Memory Grader output
1 Correct 1276 ms 11608 KB Output is correct
2 Incorrect 1168 ms 9176 KB Wrong number of edges
# Verdict Execution time Memory Grader output
1 Correct 1507 ms 11088 KB Output is correct
2 Incorrect 1490 ms 9612 KB Wrong number of edges