Submission #460936

# Submission time Handle Problem Language Result Execution time Memory
460936 2021-08-09T11:12:56 Z kingfran1907 Pipes (CEOI15_pipes) C++14
20 / 100
1611 ms 13056 KB
#include <bits/stdc++.h>
#define X first
#define Y second

using namespace std;
typedef long long llint;

const int maxn = 1e5+10;
const int base = 31337;
const int mod = 1e9+7;
const int inf = 0x3f3f3f3f;
const int logo = 18;
const int off = 1 << logo;
const int treesiz = off << 1;

struct union_find {
	int parr[maxn];
	
	union_find() {
		for (int i = 0; i < maxn; i++) parr[i] = i;
	}
	
	int fin(int x) {
		if (x == parr[x]) return x;
		return parr[x] = fin(parr[x]);
	}
	
	void merg(int a, int b) {
		a = fin(a);
		b = fin(b);
		if (a == b) return;
		
		int ra = rand() % 2;
		if (ra == 0) parr[b] = a;
		else parr[a] = b;
	}
};

int n, m;
vector< int > graph[maxn];
union_find p, q;
int t = 0;
int dis[maxn], lo[maxn];

void dfs(int x, int parr) {
	dis[x] = t++;
	lo[x] = dis[x];
	//printf("start %d %d\n", x, dis[x]);
	
	for (int tren : graph[x]) {
		if (tren == parr) continue; 
		if (dis[tren] == -1) {
			dfs(tren, x);
			if (lo[tren] > dis[x]) printf("%d %d\n", x, tren);
			lo[x] = min(lo[x], lo[tren]);
		} else {
			lo[x] = min(lo[x], dis[tren]);
		}
	}
	//printf("end %d: %d %d\n", x, dis[x], lo[x]);
}

int main() {
	srand(time(0));
	scanf("%d%d", &n, &m);
	for (int i = 0; i < m; i++) {
		int a, b;
		scanf("%d%d", &a, &b);
		
		if (p.fin(a) != p.fin(b)) {
			graph[a].push_back(b);
			graph[b].push_back(a);
			
			p.merg(a, b);
		} else if (q.fin(a) != q.fin(b)) {
			graph[a].push_back(b);
			graph[b].push_back(a);
			
			q.merg(a, b);
		}
	}
	
	memset(dis, -1, sizeof dis);
	for (int i = 1; i <= n; i++) {
		if (dis[i] == -1) dfs(i, 0);
	}
	return 0;
}

Compilation message

pipes.cpp: In function 'int main()':
pipes.cpp:65:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   65 |  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]
   68 |   scanf("%d%d", &a, &b);
      |   ~~~~~^~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 3 ms 3788 KB Output is correct
2 Incorrect 3 ms 3788 KB Wrong number of edges
# Verdict Execution time Memory Grader output
1 Correct 7 ms 4192 KB Output is correct
2 Incorrect 7 ms 4044 KB Wrong number of edges
# Verdict Execution time Memory Grader output
1 Correct 134 ms 4068 KB Output is correct
2 Incorrect 130 ms 3932 KB Wrong number of edges
# Verdict Execution time Memory Grader output
1 Incorrect 239 ms 4700 KB Wrong number of edges
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 367 ms 6088 KB Output is correct
2 Correct 394 ms 5768 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 535 ms 10452 KB Output is correct
2 Incorrect 455 ms 7268 KB Wrong number of edges
# Verdict Execution time Memory Grader output
1 Correct 805 ms 11152 KB Output is correct
2 Incorrect 860 ms 8700 KB Wrong number of edges
# Verdict Execution time Memory Grader output
1 Correct 1032 ms 13056 KB Output is correct
2 Incorrect 961 ms 8840 KB Wrong number of edges
# Verdict Execution time Memory Grader output
1 Correct 1325 ms 13056 KB Output is correct
2 Incorrect 1216 ms 8968 KB Wrong number of edges
# Verdict Execution time Memory Grader output
1 Correct 1498 ms 12560 KB Output is correct
2 Correct 1611 ms 10180 KB Output is correct