# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
197392 | Ahmed_Selim | Arranging Shoes (IOI19_shoes) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cstring>
#include <vector>
#include <set>
#include <algorithm>
#define MOD 1000000007
using namespace std;
long long int cvp, n;
vector<int> konum[2][200010];
long long int count_swaps(int[] arr){
for (n = 0; arr[n] ; ++n){
if(arr[n]<0)konum[1][arr[n]].push_back(n);
else konum[0][arr[n]].push_back(n);
}
for (int i = 0; i < n; i+=2){
if(arr[i]<0){
int j=0;
while(konum[0][arr[i]][j]<0)j++;
int index=konum[0][arr[i]][j];
while(index!=i+1){
swap(arr[index], arr[index-1]);
cvp++;
}
konum[0][arr[i]][j]=-1;
}else{
int j=0;
while(konum[0][arr[i]][j]<0)j++;
int index=konum[0][arr[i]][j];
while(index!=i+1){
swap(arr[index], arr[index-1]);
cvp++;
}
konum[0][arr[i]][j]=-1;
cvp++;
}
}
return cvp;
}