Submission #795515

# Submission time Handle Problem Language Result Execution time Memory
795515 2023-07-27T10:46:47 Z Josia Sorting (IOI15_sorting) C++17
0 / 100
2 ms 340 KB
#include "sorting.h"
#include <bits/stdc++.h>
using namespace std;

int findSwapPairs(int N, int _S[], int M, int X[], int Y[], int P[], int Q[]) {
	vector<int> S(N);
	for (int i = 0; i<N; i++) S[i] = _S[i];
    for (int i = 2; i<N; i++) {
		swap(S[X[i-2]], S[Y[i-2]]);
		for (int j = 0; j<N; j++) {
			if (S[j] == i) {
				swap(S[j], S[i]);
				P[i-2]=i;
				Q[i-2]=i;
				break;
			}
		}
	}
	if (S[0] == 0) return N-2;
	
	swap(S[X[N-2]], S[Y[N-2]]);
	if (S[0] == 0) {P[N-2]=0;Q[N-2]=0;}
	else {P[N-2]=0;Q[N-2]=1;}
	
	return N-1;

}


Compilation message

sorting.cpp: In function 'int findSwapPairs(int, int*, int, int*, int*, int*, int*)':
sorting.cpp:5:40: warning: unused parameter 'M' [-Wunused-parameter]
    5 | int findSwapPairs(int N, int _S[], int M, int X[], int Y[], int P[], int Q[]) {
      |                                    ~~~~^
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB Integer parameter [name=R] equals to -1, violates the range [0, 1]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB Integer parameter [name=R] equals to -1, violates the range [0, 1]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB Output is correct
2 Incorrect 1 ms 212 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB Integer parameter [name=R] equals to -1, violates the range [0, 1]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -