# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
891579 | Arp | Arranging Shoes (IOI19_shoes) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include<bits/stdc++.h>
using namespace std;
using i64 = long long;
i64 count_swaps(vector<int> arr){
int n = arr.size();
map<int,int> mp;
vector<int> bit(n + 1);
i64 ans = 0;
for(int i = 0;i<n;i++){
int e = arr[i];
int ind;
if(mp.find(-e) == mp.end()){
ind = i + 1;
mp[e] = ind;
}else{
ind = mp[-e];
mp.erase(e); mp.erase(-e);
ans += i; // implementation skills
for(int j = ind;j > 0;j -= (j & -j)){
ans -= bit[j];
}
if(e < 0) ans ++;
}
// adding twice if found both the pair
for(;ind <= n;ind += (ind & -ind)){
bit[ind] ++;
}
}
return ans;
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
return 0;
}