# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
289827 | IgorI | Arranging Shoes (IOI19_shoes) | C++17 | 129 ms | 13304 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <vector>
#include <cstdio>
#include <string>
#include <set>
#include <cstdlib>
#include <iostream>
#include <map>
using namespace std;
#define all(x) (x).begin(), (x).end()
#define forn(i, n) for (int (i) = 0; (i) < (n); (i)++)
const int N = 540400;
int fenw[N];
void add(int pos)
{
while (pos < N)
{
fenw[pos]++;
pos = (pos | (pos + 1));
}
}
int get(int pos)
{
int res = 0;
while (pos >= 0)
{
res += fenw[pos];
pos = (pos & (pos + 1)) - 1;
}
return res;
}
long long count_swaps(vector<int> a)
{
int n = a.size() / 2;
long long ans = 0;
set<pair<int, int> > s;
for (int i = 0; i < a.size(); i++)
{
s.insert({a[i], i});
}
for (int i = 0; i < n; i++)
{
auto it = s.begin();
pair<int, int> x = *it;
s.erase(s.begin());
auto it2 = s.lower_bound({-x.first, -1});
pair<int, int> y = *it2;
//cout << x.first << " " << x.second << "->" << y.first << " " << y.second << "\n";
s.erase(y);
int real_pos = y.second + get(a.size()) - get(y.second);
add(y.second);
ans += abs(real_pos - (2 * i + 1));
if (x.first > 0) ans++;
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |