#include<bits/stdc++.h>
#include "sorting.h"
using namespace std;
const int MAX_SWAP=1000*1000;
int nbVal,nbSwap,posModif,nouvVal;
int autreSwap[MAX_SWAP][2];
int val[MAX_SWAP];
int obj[MAX_SWAP];
vector<pair<int,int>> rep;
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
nbVal=N;
nbSwap=M;
for (int i=0;i<nbVal;i++) {
val[i]=S[i];
}
for (int i=0;i<nbSwap;i++) {
autreSwap[i][0]=X[i];
autreSwap[i][1]=Y[i];
}
for (int i=0;i<nbVal;i++) {
obj[i]=i;
}
for (int i=nbSwap-1;i>=0;i--) {
swap(obj[autreSwap[i][0]],obj[autreSwap[i][1]]);
/*for (int j=0;j<nbVal;j++) {
cout<<obj[j]<<" ";
}
cout<<endl;*/
}
for (int i=0;i<nbSwap;i++) {
swap(obj[autreSwap[i][0]],obj[autreSwap[i][1]]);
swap(val[autreSwap[i][0]],val[autreSwap[i][1]]);
posModif=0;
nouvVal=0;
for (int j=0;j<nbVal;j++) {
if (val[j]!=obj[j]) {
posModif=j;
}
}
for (int j=0;j<nbVal;j++) {
if (obj[j]==val[posModif]) {
nouvVal=j;
}
}
/*for (int j=0;j<nbVal;j++) {
cout<<val[j]<<" ";
}
cout<<" ";
for (int j=0;j<nbVal;j++) {
cout<<obj[j]<<" ";
}
cout<<" ";
cout<<posModif<<" : ";*/
rep.push_back({posModif,nouvVal});
swap(val[posModif],val[nouvVal]);
/*for (int j=0;j<nbVal;j++) {
cout<<val[j]<<" ";
}
cout<<" ";
for (int j=0;j<nbVal;j++) {
cout<<obj[j]<<" ";
}
cout<<endl;*/
}
for (int i=0;i<nbSwap;i++) {
P[i]=rep[i].first;
Q[i]=rep[i].second;
}
return nbSwap;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
212 KB |
Output is correct |
3 |
Correct |
1 ms |
312 KB |
Output is correct |
4 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
212 KB |
Output is correct |
3 |
Correct |
1 ms |
312 KB |
Output is correct |
4 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
312 KB |
Output is correct |
2 |
Correct |
1 ms |
308 KB |
Output is correct |
3 |
Correct |
1 ms |
452 KB |
Output is correct |
4 |
Correct |
1 ms |
468 KB |
Output is correct |
5 |
Correct |
2 ms |
400 KB |
Output is correct |
6 |
Correct |
1 ms |
340 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
212 KB |
Output is correct |
3 |
Correct |
1 ms |
312 KB |
Output is correct |
4 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
14 ms |
580 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
14 ms |
580 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |