# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
151205 | outsider | Arranging Shoes (IOI19_shoes) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <bits/stdc++.h>
#define ll int
#define x first
#define y second
using namespace std;
ll count_swaps(vector<ll> a){
ll ans=0;
ll n=a.size()/2;
a.push_front(0);
for (int i=0;i<a.size();i++)
{
ll mt=0;
for (ll k=i+1;k<a.size();k++)
{
if (a[k]==-a[i])
{
ans+=mt;
if (a[i]>0)ans++;
a[k]=0;
break;
}
else
if (a[k]!=0)mt++;
}
}
return ans;
}