이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <bits/stdc++.h>
using namespace std;
long long count_swaps(vector<int> s) {
int n = s.size()/2;
priority_queue<int> L, R;
for (int i = 0; i < 2*n; i++) {
if (s[i] < 0) {
L.push(-i);
} else {
R.push(-i);
}
}
long long swaps = 0;
for (int i = 0; i < 2*n; i++) {
if (s[i] < 0) {
// L
if (i % 2 == 1) {
// Mismatch
int nearest = -R.top();
R.pop();
swaps += nearest-i;
if (!L.empty()) L.pop();
L.push(-nearest);
s[i] *= -1; s[nearest] *= -1;
//cout << 1 << " " << nearest << " " << i << '\n';
} else if (!L.empty()) {
// Correcto
L.pop();
}
} else {
// R
if (i % 2 == 0) {
// Mismatch
int nearest = -L.top();
L.pop();
swaps += nearest - i;
if (!R.empty()) R.pop();
R.push(-nearest);
s[i] *= -1; s[nearest] *= -1;
//cout << nearest << " " << i << '\n';
} else if (!R.empty()) {
// Correcto
R.pop();
}
}
}
return swaps;
}
# | 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... |