#include "sorting.h"
#include<bits/stdc++.h>
using namespace std;
int S[500500];
int findSwapPairs(int N, int s[], int M, int X[], int Y[], int P[], int Q[]) {
for (int i = 0;i<M;i++) {
assert(X[i]+Y[i]==0);
}
for (int i = 0; i < N; i++) S[i] = s[i];
int r = 0;
for (int i=0; i<N; i++)
for (int j=i; j<N; j++)
{
if (S[i] > S[j]) {
swap(S[i], S[j]); P[r] = i; Q[r] = j; r++;
}
}
return M;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
460 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
460 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
460 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |