# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
994313 | cpdreamer | Arranging Shoes (IOI19_shoes) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <utility>
using namespace __gnu_pbds;
using namespace std;
typedef tree<int,null_type,less<int>,rb_tree_tag,
tree_order_statistics_node_update> indexed_set;
const int max_n=INT_MAX;
typedef long long ll;
#define LLM LONG_LONG_MAX
#define pb push_back
#define F first
#define L length()
#define all(v) v.begin(),v.end()
#define P pair
#define V vector
#define S second
const long long MOD = 1000000007; // 1e9 + 7
void file(){
freopen("input.txt.txt","r",stdin);
freopen("output.txt.txt","w",stdout);
}
void setio(string s) {
freopen((s + ".in").c_str(), "r", stdin);
freopen((s + ".out").c_str(), "w", stdout);
}
long long count_swaps(vector<int> s) {
int n=(int)s.size();
long long c=0;
for(int i=0;i<n-1;i++){
if(i%2==0){
if(s[i]<0)
continue;
int index;
for(int j=i+1;j<n;j++){
if(s[j]<0){
index=j;
break;
}
}
for(int j=index;j>i;j--){
swap(s[j],s[j-1]);
c++;
}
}
else{
if(s[i]==-s[i-1])
continue;
int index;
for(int j=i+1;j<n;j++){
if(s[j]==-s[i-1]){
index=j;
break;
}
}
for(int j=index;j>i;j--){
swap(s[j],s[j-1]);
c++;
}
}
}
return c;
}
void solve() {
int n;
cin>>n;
V<int>s(2*n);
for(int i=0;i<2*n;i++)
cin>>s[i];
cout<<count_swaps(s)<<endl;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
//file();
solve();
return 0;
}