# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
144819 | khrbuddy03 | Arranging Shoes (IOI19_shoes) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
using lint = long long;
const int maxn = 1e5 + 9;
struct fenwick {
vector<lint> tree;
fenwick(int _n) : tree(_n + 1, 0) {}
lint get(int index) {
lint sum = 0LL;
while (0 < index) {
sum += tree[index] * 1LL;
index -= (index & -index);
}
return sum * 1LL;
}
void add(int index, lint value) {
while (index < tree.size()) {
tree[index] += value * 1LL;
index += (index & -index);
}
}
};
lint count_swaps(vector<int> s) {
int n = (int)s.size() / 2;
vector<bool> check(n * 2, false);