# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
298266 | Rayaabualjamal | Arranging Shoes (IOI19_shoes) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <cassert>
#include <iostream>
#include <vector>
#include <map>
#include <cstdio>
#define rep(i,a,b) for(int i = a; i<b; i++)
#define per(i,a,b) for(int i = a; i>=b; i--)
#define pb push_back
#define se second
using namespace std;
long long count_swaps(vector<int> s) {
int n = s.size();
long long ans = 0;
map <int, vector <int> > m;
rep(i,0,n){
m[s[i]].pb(i);
}
for(auto& vec:m){
reverse(vec.se.begin(), vec.se.end());
}
vector <int> vis(n+n, 0);
rep(i,0,n){
if(vis[i])continue;
//cout << i << " ";
if(s[i]<0){
int pos = m[-s[i]].back();
//cout << pos << " 1" << endl;
per(j,pos-1, i+1){
if(vis[j]==0)ans++;
}
vis[pos] = 1;
}else{
int pos = m[-s[i]].back();
//cout << pos << " 2" << endl;
per(j,pos-1, i){
if(vis[j]==0)ans++;
}
vis[pos] = 1;
}
m[-s[i]].pop_back();
m[s[i]].pop_back();
vis[i]=1;
}
//cout << "ans: " << ans << endl;
return ans;
}