# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
529577 | groshi | Arranging Shoes (IOI19_shoes) | C++17 | 342 ms | 33320 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<vector>
#include<map>
#include<set>
#include<algorithm>
using namespace std;
map<int,set<int> > mapka;
int pot=1;
int drzewo[800000];
bool mam[400000];
void usun(int x)
{
x+=pot;
drzewo[x]--;
x/=2;
while(x>=1)
{
drzewo[x]=drzewo[x*2]+drzewo[x*2+1];
x/=2;
}
}
int ile(int x,int y)
{
x+=pot;
y+=pot;
int wynik=0;
wynik+=drzewo[x];
if(x!=y)
wynik+=drzewo[y];
while(x/2!=y/2)
{
if(x%2==0)
wynik+=drzewo[x+1];
if(y%2==1)
wynik+=drzewo[y-1];
x/=2;
y/=2;
}
return wynik;
}
long long count_swaps(vector<int> S)
{
while(pot<=S.size())
pot*=2;
pot--;
for(int i=0;i<S.size();i++)
{
mapka[S[i]].insert(i);
}
for(int i=1;i<=S.size();i++)
drzewo[i+pot]=1;
for(int i=pot;i>=1;i--)
drzewo[i]=drzewo[i*2+1]+drzewo[i*2];
long long wynik=0;
for(int i=0;i<S.size();i++)
{
if(mam[i]==1)
continue;
mam[i]=1;
if(S[i]>0)
wynik++;
auto it=mapka[-S[i]].begin();
int gdzie=*it;
mapka[-S[i]].erase(it);
mam[gdzie]=1;
wynik+=ile(i+1,gdzie+1)-2;
usun(i+1);
usun(gdzie+1);
it=mapka[S[i]].begin();
mapka[S[i]].erase(it);
}
return wynik;
}
컴파일 시 표준 에러 (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... |