# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1030785 | Zicrus | Arranging Shoes (IOI19_shoes) | C++17 | 785 ms | 15196 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "shoes.h"
using namespace std;
typedef long long ll;
ll n;
ll pow2;
vector<ll> seg;
void segSet(ll id, ll val) {
id += pow2;
seg[id] = val;
id /= 2;
while (id) {
seg[id] = seg[2*id] + seg[2*id+1];
id /= 2;
}
}
ll segGet(ll low, ll high) {
low += pow2; high += pow2;
ll ans = 0;
while (low <= high) {
if (low & 1) ans += seg[low++];
if (!(high & 1)) ans += seg[high--];
low /= 2; high /= 2;
}
return ans;
}
ll count_swaps(vector<int> a) {
n = a.size() / 2;
vector<vector<ll>> seenQNeg(n+10);
vector<vector<ll>> seenQPos(n+10);
ll res = 0;
pow2 = 2ll << (ll)ceil(log2(n));
seg = vector<ll>(2*pow2);
for (int i = 0; i < a.size(); i++) {
auto &q = a[i] < 0 ? seenQNeg[-a[i]] : seenQPos[a[i]];
auto &pairQ = a[i] > 0 ? seenQNeg[a[i]] : seenQPos[-a[i]];
if (pairQ.empty()) {
q.insert(q.begin(), i);
}
else {
ll id = pairQ.back();
pairQ.pop_back();
if (a[i] < 0) {
res += abs(id - i) + segGet(id, i);
segSet(i, -1);
segSet(id, 1);
}
else {
res += abs(id - i) - 1 + segGet(id, i);
segSet(i, -1);
segSet(id, 1);
}
}
}
return res;
}
컴파일 시 표준 에러 (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... |