This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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;
int buenos;
void cambiar(vector<int>&v, int i, int j){
int temp = v[i];
v[i] = v[j];
v[j] = temp;
}
bool sorted(int n){
return buenos == n;
}
int test(int N, vector<int>&S, int M, vector<int>&X, vector<int>&Y, vector<int>&P, vector<int>&Q){
buenos = 0;
vector<int>copia;
bool valid = true;
for(int i = 0 ; i < N ; i ++){
whereIs[0].pb(0);
whereIs[1].pb(0);
if(S[i] != i)valid = false;
}
if(valid)return 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;
if(current[i] == i)buenos ++;
}
for(int i = 0 ; i < N ; 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, movimientos = 0;
int i = 0;
int temporal, t2;
while(i < M){
//for(auto k : current)cout << k << " ";
//cout << endl;
if(sorted(N))return movimientos;
cambiar(arr, X[i], Y[i]);
whereIs[0][arr[X[i]]] = X[i];
whereIs[0][arr[Y[i]]] = Y[i];
temporal = 0, t2 = 0;
if(current[X[i]] == X[i])temporal ++;
if(current[Y[i]] == Y[i])temporal ++;
cambiar(current, X[i], Y[i]);
if(current[X[i]] == X[i])t2 ++;
if(current[Y[i]] == Y[i])t2 ++;
buenos += t2-temporal;
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++;
if(currentC < N){
P[i] = whereIs[1][currentC];
Q[i] = whereIs[0][currentC];
temporal = 0;
t2 = 0;
if(current[P[i]] == P[i])temporal ++;
if(current[Q[i]] == Q[i])temporal ++;
cambiar(current, P[i], Q[i]);
if(current[P[i]] == P[i])t2 ++;
if(current[Q[i]] == Q[i])t2 ++;
buenos += t2-temporal;
whereIs[1][current[P[i]]] = P[i];
whereIs[1][current[Q[i]]] = Q[i];
i++;
currentC++;
movimientos++;
}else{
i++;
currentC++;
movimientos++;
}
}
//for(auto k : current)cout << k << " ";
if(sorted(N))return movimientos;
else return -1;
}
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
vector<int>s, x, y, p, q;
for(int i = 0 ; i < N ; i ++){
s.pb(S[i]);
}
for(int i = 0 ; i < M ; i ++){
x.pb(X[i]);
y.pb(Y[i]);
p.pb(0);
q.pb(0);
}
int ans = test(N, s, M, x, y, p, q);
for(int i = 0 ; i < ans ; i ++){
P[i] = p[i];
Q[i] = q[i];
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |