답안 #475245

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
475245 2021-09-21T15:33:38 Z stefantaga Pipes (CEOI15_pipes) C++14
90 / 100
1572 ms 22568 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]);
	
	bool flag = false;
	for (int tren : graph[x]) {
		if (tren == parr && !flag) {
			flag = true;
			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:69:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   69 |  scanf("%d%d", &n, &m);
      |  ~~~~~^~~~~~~~~~~~~~~~
pipes.cpp:72:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   72 |   scanf("%d%d", &a, &b);
      |   ~~~~~^~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 3788 KB Output is correct
2 Correct 3 ms 3772 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 7 ms 4172 KB Output is correct
2 Correct 7 ms 4044 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 138 ms 4072 KB Output is correct
2 Correct 136 ms 3936 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 228 ms 4704 KB Output is correct
2 Correct 271 ms 4200 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 379 ms 6168 KB Output is correct
2 Correct 338 ms 5700 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 508 ms 10936 KB Output is correct
2 Correct 460 ms 7492 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 799 ms 11968 KB Output is correct
2 Correct 801 ms 9176 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1036 ms 13952 KB Output is correct
2 Correct 994 ms 9028 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1309 ms 13948 KB Output is correct
2 Correct 1247 ms 9016 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1572 ms 13508 KB Output is correct
2 Runtime error 1571 ms 22568 KB Memory limit exceeded