# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
537338 | ERH | Arranging Shoes (IOI19_shoes) | C++14 | 719 ms | 12176 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
using namespace std;
vector<int> lista[100011][2];
long long int temp[200011];
long long count_swaps(vector<int> v){
long long int total=0;
for(int i=0; i<v.size(); ++i){
int a=v[i];
if(a<0){
a=-a;
if(!lista[a][0].empty()){
long long int temp1=i+1, temp2=lista[a][0].front();
for(int j=i+1; j>0; j-=j&-j){
temp1+=temp[j];
}
temp1+=temp[0];
for(int j=lista[a][0].front(); j>0; j-=j&-j){
temp2+=temp[j];
}
temp2+=temp[0];
total+=temp1-temp2;
for(int j=lista[a][0].front(); j<200011; j+=j&-j){
temp[j]++;
}
for(int j=i+1; j<200011; j+=j&-j){
temp[j]--;
}
lista[a][0].erase(lista[a][0].begin());
} else {
lista[a][1].push_back(i+1);
}
} else {
if(!lista[a][1].empty()){
long long int temp1=i+1, temp2=lista[a][1].front();
for(int j=i+1; j>0; j-=j&-j){
temp1+=temp[j];
}
temp1+=temp[0];
for(int j=lista[a][1].front(); j>0; j-=j&-j){
temp2+=temp[j];
}
temp2+=temp[0];
total+=temp1-temp2;
total--;
for(int j=lista[a][1].front(); j<200011; j+=j&-j){
temp[j]++;
}
for(int j=i+1; j<200011; j+=j&-j){
temp[j]--;
}
lista[a][1].erase(lista[a][1].begin());
} else {
lista[a][0].push_back(i+1);
}
}
}
return total;
}
컴파일 시 표준 에러 (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... |