# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
243087 | idtj | Arranging Shoes (IOI19_shoes) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
using namespace std;
signed main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
vector<deque<pair<int, int>>> a(n + 1); // pos / is_left
vector<pair<int, int>> in(n * 2); // size / is_left
for (int i = 0; i < n * 2; ++i) {
int now;
cin >> now;
if (now < 0) {
in[i].second = 1;
now = -now;
}
in[i].first = now;
}
int ans = 0;
for (int i = 0; i < n * 2; ++i) {
auto &t = a[abs(in[i].first)];
if (t.empty() || t.front().second == in[i].second) {
t.push_back(make_pair(i, in[i].second));
}
else {
if (t.front().second) {
ans += i - t.front().first - 1;
}
else
ans += i - t.front().first;
t.pop_front();
}
}
cout << ans << endl;
return 0;
}