이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "shoes.h"
using namespace std;
int n;
int tree[200020];
void update(int pos, int st)
{
while(pos<=n)
{
tree[pos]+=st;
pos+=(pos&(-pos));
}
}
int query(int pos)
{
int res=0;
while(pos)
{
res+=tree[pos];
pos-=(pos&(-pos));
}
return res;
}
int query(int le, int ri)
{
return query(ri)-query(le-1);
}
int otm=100005;
int id[200020];
vector<int> pos[200020];
long long count_swaps(std::vector<int> s)
{
long long br=0;
n=s.size();
for(int i=1; i<=n; i++)
{
pos[s[i-1]+otm].push_back(i);
update(i, 1);
}
for(int i=1; i<=n; i++)
{
if(!query(i, i)) continue;
int tch=s[i-1];
id[tch+otm]++;
int prch=otm-tch;
int tpos=pos[prch][id[prch]];
id[prch]++;
br+=query(i+1, tpos-1);
update(tpos, -1);
if(tch+otm>prch) br++;
}
return br;
}
# | 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... |