Submission #1081628

# Submission time Handle Problem Language Result Execution time Memory
1081628 2024-08-30T08:23:34 Z Elias Pipes (CEOI15_pipes) C++17
0 / 100
780 ms 65536 KB
#include <bits/stdc++.h>

using namespace std;

int parent[100000];
int depth[100000];
int root[100000];
int union_parent[100000];
vector<vector<int>> children;

int find(int a)
{
	if (union_parent[a] == a)
		return a;
	return union_parent[a] = find(union_parent[a]);
}

void unite(int a, int b)
{
	a = find(a);
	b = find(b);

	// if (rand() % 2)
	// 	swap(a, b);
	union_parent[a] = b;
}

vector<vector<int>> adj;

void dfs_reconstruct(int i, int d, int p, int r)
{
	root[i] = r;
	parent[i] = p;
	depth[i] = d;

	for (int c : adj[i])
	{
		if (c == p)
			continue;
		dfs_reconstruct(c, d + 1, i, r);
	}
}

signed main()
{
	cin.tie(0);
	ios_base::sync_with_stdio(false);

	int n, m;
	cin >> n >> m;

	children.resize(n);
	adj.resize(n);

	for (int i = 0; i < n; i++)
	{
		parent[i] = root[i] = union_parent[i] = i;
		children[i] = vector<int>{i};
		depth[i] = 1;
	}

	while (m--)
	{
		int a, b;
		cin >> a >> b;

		a--, b--;

		a = find(a);
		b = find(b);

		if (root[a] == root[b])
		{
			while (a != b)
			{
				assert(root[a] == root[b]);

				if (depth[a] < depth[b])
					swap(a, b);

				assert(find(a) != find(parent[find(a)]));

				unite(a, parent[a]);

				a = find(a);
				b = find(b);
			}
		}
		else
		{
			if (children[root[a]].size() < children[root[b]].size())
				swap(a, b);

			vector<pair<int, int>> inserts;

			vector<int> new_nodes;

			for (int i : children[root[b]])
			{
				i = find(i);
				int p = find(parent[i]);

				new_nodes.push_back(i);
				new_nodes.push_back(p);

				if (i == p)
					continue;

				inserts.push_back({i, p});
				inserts.push_back({p, i});
			}

			sort(inserts.begin(), inserts.end());
			inserts.erase(unique(inserts.begin(), inserts.end()), inserts.end());

			sort(new_nodes.begin(), new_nodes.end());
			new_nodes.erase(unique(new_nodes.begin(), new_nodes.end()), new_nodes.end());

			for (int node : new_nodes)
			{
				children[root[a]].push_back(node);
			}

			for (auto [a, b] : inserts)
			{
				adj[a].push_back(b);
			}

			dfs_reconstruct(b, depth[a] + 1, a, root[a]);

			for (auto [a, b] : inserts)
			{
				adj[a].clear();
			}
		}
	}

	for (int i = 0; i < n; i++)
	{
		if (find(i) != find(parent[i]))
			cout << i + 1 << " " << parent[i] + 1 << "\n";
	}
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 604 KB Mismatched edge
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 1116 KB Mismatched edge
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 59 ms 5328 KB Output is correct
2 Incorrect 86 ms 5232 KB Mismatched edge
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 104 ms 9168 KB Output is correct
2 Incorrect 123 ms 10604 KB Mismatched edge
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 212 ms 15696 KB Output is correct
2 Runtime error 180 ms 17960 KB Memory limit exceeded
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 291 ms 24940 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 456 ms 35496 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 483 ms 46184 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 643 ms 55292 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 780 ms 65536 KB Memory limit exceeded
2 Halted 0 ms 0 KB -