# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
387449 | ismoilov | Arranging Shoes (IOI19_shoes) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define IOS ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).begin(), (x).end()
#define fp(a,i,c) for(int (a) = (i); (a) < (c); (a)++)
#define fpp(a,i,c) for(int (a) = (i); (a) <= (c); (a)++)
#define fv(c) for(int (a) = (1); (a) <= (c); (a)++)
#define fz(c) for(int (a) = (0); (a) < (c); (a)++)
#define fm(a,i,c) for(int (a) = (i); (a) > (c); (a)--)
#define fmm(a,i,c) for(int (a) = (i); (a) >= (c); (a)--)
#define pb push_back
#define in insert
#define ss second
#define ff first
struct ftree
{
vector <int> bit;
ftree(int n){
bit = vector<int> (n+1);
}
void add(int k, int x){
k ++;
while(k < bit.size()){
bit[k] += x;
k += k & -k;
}
}
int sum(int k)
{
int ans = 0;
k ++;
while(k){
ans += bit[k];
k -= k & -k;
}
return ans;
}
};
ll S(vector <int> &s)
{
ftree Ftree(s.size());
map<int, vector<int>> m;
set<int> c;
fp(i,0,s.size()){
c.in(i);
m[s[i]].pb(i);
Ftree.add(i, 1);
}
ll ans = 0;
while(!c.empty()){
int x = *c.begin(); c.erase(c.begin());
m[s[x]].erase(m[s[x]].begin());
int y = *m[-s[x]].begin(); m[-s[x]].erase(m[-s[x]].begin());
Ftree.add(x, -1);
Ftree.add(y, -1);
c.erase(y);
int g = Ftree.sum(y);
if(s[x] > 0)
g ++;
ans += g;
}
return ans;
}
int main()
{
IOS;
int n;
cin >> n;
vector <int> c(2*n);
fp(i,0,2*n)
cin >> c[i];
cout << S(c);
/*int t;
cin >> t;
while(t--)
S();*/
}