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 "shoes.h"
#include <vector>
#include <bitset>
#include <tuple>
#include <cmath>
using namespace std;
typedef vector<int> vi;
typedef pair<vi,bool> vib;
int n,num,shoeSize,index,first,second;
long long count_swaps(std::vector<int> s) {
n = s.size() / 2;
vib sizes[n + 1];
long long swapsNeeded = 0;
for(index = 0; index < 2 * n; ++index) {
num = s[index];
//cerr << "shoe num " << index << " is " << num << endl;
shoeSize = abs(num);
if(sizes[shoeSize].first.size() == 0) {
sizes[shoeSize].first.push_back(index);
sizes[shoeSize].second = num > 0;
} else if((num > 0) == sizes[shoeSize].second) {
sizes[shoeSize].first.push_back(index);
} else {
first = num < 0 ? index : sizes[shoeSize].first[0];
second = num > 0 ? index : sizes[shoeSize].first[0];
if(second > first) {
swapsNeeded += second - first - 1;
} else {
swapsNeeded += first - second;
}
sizes[shoeSize].first.erase(sizes[shoeSize].first.begin());
}
}
return swapsNeeded;
}
# | 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... |