# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
465875 | dattranxxx | Arranging Shoes (IOI19_shoes) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
* Author : shora
*/
#include "shoes.h"
#include <bits/stdc++.h>
#define print(_v) for (auto &_ : _v) {cerr << _ << ' ';} cerr << endl;
using namespace std;
using ll = long long;
const int oo = 1e9;
ll n;
namespace task_5 {
ll solve(vector<int>& a) {
ll res = 0;
for (int i = 0; i < a.size(); i += 2) {
int j = find(a.begin() + i + 1, a.end(), -a[i]) - a.begin();
int lim = a[i] < 0 ? j-i-1 : j-i;
for (int k = 0; k <= lim; ++k) {
swap(a[j], a[j-1]); j--;
}
res ++ lim;
}
return res;
}
}
long long count_swaps(std::vector<int> a) {
n = a.size() / 2;
return task_5::solve(a);
}