Submission #532451

# Submission time Handle Problem Language Result Execution time Memory
532451 2022-03-02T22:07:44 Z antonioqbab Sorting (IOI15_sorting) C++14
0 / 100
1 ms 332 KB
#include <bits/stdc++.h>
//#include <sorting.h>

using namespace std;

int findSwapPairs(int n, int s[], int m, int x[], int y[], int s1[], int s2[]) {
	vector<int> p(n);
	for (int i = 0; i < n; ++i)
		p[i] = s[i];
	int left = 0, right = n - 1;
	auto ok = [&](int pos) {
		auto p_ = p;
		for (int i = 0; i <= pos; ++i)
			swap(p_[x[i]], p_[y[i]]);
		int ans = n;
		vector<int> seen(n);
		for (int i = 0; i < n; ++i)
			if (!seen[i]) {
				--ans;
				seen[i] = 1;
				for (int j = p_[i]; j != i; j = p_[j])
					seen[j] = 1;
			}
		return ans <= pos + 1;
	};
	while (left < right) {
		int m = (left + right) / 2;
		if (ok(m))
			right = m;
		else
			left = m + 1;
	}
	auto p_ = p;
	for (int i = 0; i <= left; ++i)
		swap(p_[x[i]], p_[y[i]]);
	int cur = 0;
	vector<int> seen(n), inv(n);
	for (int i = 0; i < n; ++i)
		if (!seen[i] && p_[i] != i) {
			vector<int> sol = {i};
			for (int j = p_[i]; j != i; j = p_[j])
				sol.emplace_back(j), seen[j] = 1;
			for (int i = 0; i < (int)sol.size() - 1; ++i)
				s1[cur] = sol[i], s2[cur++] = sol[i + 1];
		}
	for (int i = 0; i <= left; ++i) {
		s1[i] = inv[s1[i]], s2[i] = inv[s2[i]];
		swap(inv[x[i]], inv[y[i]]);
		swap(p[x[i]], p[y[i]]);
	}
	return left;
}

Compilation message

sorting.cpp: In function 'int findSwapPairs(int, int*, int, int*, int*, int*, int*)':
sorting.cpp:27:7: warning: declaration of 'int m' shadows a parameter [-Wshadow]
   27 |   int m = (left + right) / 2;
      |       ^
sorting.cpp:6:39: note: shadowed declaration is here
    6 | int findSwapPairs(int n, int s[], int m, int x[], int y[], int s1[], int s2[]) {
      |                                   ~~~~^
sorting.cpp:43:13: warning: declaration of 'i' shadows a previous local [-Wshadow]
   43 |    for (int i = 0; i < (int)sol.size() - 1; ++i)
      |             ^
sorting.cpp:38:11: note: shadowed declaration is here
   38 |  for (int i = 0; i < n; ++i)
      |           ^
sorting.cpp:6:39: warning: unused parameter 'm' [-Wunused-parameter]
    6 | int findSwapPairs(int n, int s[], int m, int x[], int y[], int s1[], int s2[]) {
      |                                   ~~~~^
# Verdict Execution time Memory Grader output
1 Correct 0 ms 204 KB Output is correct
2 Correct 0 ms 204 KB Output is correct
3 Incorrect 0 ms 204 KB Output isn't correct
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 204 KB Output is correct
2 Correct 0 ms 204 KB Output is correct
3 Incorrect 0 ms 204 KB Output isn't correct
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 204 KB Output is correct
2 Incorrect 0 ms 204 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 204 KB Output is correct
2 Correct 0 ms 204 KB Output is correct
3 Incorrect 0 ms 204 KB Output isn't correct
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 332 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 332 KB Output isn't correct
2 Halted 0 ms 0 KB -