#include "sorting.h"
#include <bits/stdc++.h>
#define ll long long
#define pb push_back
#define ff first
#define ss second
using namespace std;
vector<int>arr;
vector<int>whereIs[2];
vector<int>current;
void cambiar(vector<int>&v, int i, int j){
int temp = v[i];
v[i] = v[j];
v[j] = temp;
}
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
P[0] = 0;
Q[0] = 0;
vector<int>copia;
for(int i = 0 ; i < N ; i ++){
whereIs[0].pb(0);
whereIs[1].pb(0);
}
for(int i = 0 ; i < N ; i ++){
copia.pb(S[i]);
current.pb(S[i]);
arr.pb(S[i]);
whereIs[0][S[i]] = i;
whereIs[1][S[i]] = i;
}
for(int i = 0 ; i < M ; i ++){
cambiar(copia, X[i], Y[i]);
//for(auto j : copia) cout << j << " " ;
//cout << endl;
}
for(int i = 0 ; i < N ; i ++){
//cout << "donde esta " << copia[i] << " = " << whereIs[copia[i]] << endl;
arr[whereIs[0][copia[i]]] = i;
}
for(int i = 0 ; i < N ; i ++){
whereIs[0][arr[i]] = i;
}
int currentC = 0;
int i = 0;
while(currentC < N){
cambiar(arr, X[i], Y[i]);
whereIs[0][arr[X[i]]] = X[i];
whereIs[0][arr[Y[i]]] = Y[i];
cambiar(current, X[i], Y[i]);
whereIs[1][current[X[i]]] = X[i];
whereIs[1][current[Y[i]]] = Y[i];
while(currentC < N and whereIs[1][currentC] == whereIs[0][currentC])currentC++;
P[i] = whereIs[1][currentC];
Q[i] = whereIs[0][currentC];
cambiar(current, P[i], Q[i]);
whereIs[1][current[P[i]]] = P[i];
whereIs[1][current[Q[i]]] = Q[i];
i++;
currentC++;
}
return M;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
304 KB |
Output is correct |
3 |
Correct |
1 ms |
212 KB |
Output is correct |
4 |
Incorrect |
1 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 |
304 KB |
Output is correct |
3 |
Correct |
1 ms |
212 KB |
Output is correct |
4 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
212 KB |
Output is correct |
3 |
Correct |
1 ms |
308 KB |
Output is correct |
4 |
Correct |
1 ms |
340 KB |
Output is correct |
5 |
Correct |
2 ms |
340 KB |
Output is correct |
6 |
Correct |
1 ms |
212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
304 KB |
Output is correct |
3 |
Correct |
1 ms |
212 KB |
Output is correct |
4 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
468 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
468 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |