이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <cstdio>
#include <cassert>
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<bool,bool> pbb;
typedef vector<pbb> vbb;
typedef pair<int,int> pii;
typedef vector<pii> vii;
const ll INF=1000000001;
bool samesize(vi v){
for (int x:v){
if (abs(v[x])!=abs(v[0])) return false;
}
return true;
}
long long count_swaps(std::vector<int> v) {
int n=v.size()/2;
ll sol=0;
if (samesize(v)){
ll l=0;
ll r=0;
for (int x:v){
if (x<0){
sol+=abs(2-l-max(l-r,ll(0))-l-r+max(r-l,ll(0)));
l++;
}
else{
sol+=abs(2*r+1-max(r-l+1,ll(0))-l-r+max(l-r-1,ll(0)));
r++;
}
}
return sol;
}
for (int i=0;i<n;i++){
vbb porver(n+1,pbb{true,true});
vii dondevisto(n+1);
for (int j=2*i;j<2*n;j++){
int x=v[j];
if (x<0){
x=-x;
if (porver[x].first){
porver[x].first=false;
dondevisto[x].first=j;
}
}
else{
if (porver[x].second){
porver[x].second=false;
dondevisto[x].second=j;
}
}
if (porver[x]==pbb{false,false}){
for (int h=dondevisto[x].first;h>2*i;h--){
sol++;
swap(v[h],v[h-1]);
}
if (dondevisto[x].second<dondevisto[x].first) dondevisto[x].second++;
for (int h=dondevisto[x].second;h>2*i+1;h--){
sol++;
swap(v[h],v[h-1]);
}
break;
}
}
}
return sol;
}
# | 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... |