# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
297347 | Saboon | Arranging Shoes (IOI19_shoes) | C++17 | 1064 ms | 27356 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <bits/stdc++.h>
using namespace std;
map<int,set<int>> S;
long long count_swaps(vector<int> a){
int n = (int)a.size() / 2;
long long ret = 0;
for (int now = 0; now < 2*n; now += 2){
vector<pair<int,int>> Joft;
for (int i = 0; i < a.size(); i++){
int x = a[i];
if (!S[-x].empty()){
Joft.push_back({*S[-x].begin(),i});
S[-x].erase(S[-x].begin());
}
else
S[x].insert(i);
}
auto it = *min_element(Joft.begin(), Joft.end());
int v = it.first, u = it.second;
if (a[v] > a[u])
ret ++;
ret += v+u-1;
a.erase(a.begin()+u);
a.erase(a.begin()+v);
}
return ret;
}
컴파일 시 표준 에러 (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... |