# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
414650 | hibye1217 | Arranging Shoes (IOI19_shoes) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <vector>
#include <cstdio>
#include <cassert>
using namespace std;
long long count_swaps(std::vector<int> s);
int main() {
int n;
assert(1 == scanf("%d", &n));
vector<int> S(2 * n);
for (int i = 0; i < 2 * n; i++)
assert(1 == scanf("%d", &S[i]));
fclose(stdin);
long long result = count_swaps(S);
printf("%lld\n", result);
fclose(stdout);
return 0;
}
// #include "shoes.h"
int psh(std::vector<int>& s, int st, int ed){
int res = 0;
for (int j = st; j > ed; j--){
swap(s[j], s[j-1]);
res += 1;
}
return res;
}
long long count_swaps(std::vector<int> s) {
int n = s.size();
int ans = 0;
for (int i = 0; i < n; i += 2){
int p = 0;
for (int j = i; j < n; j++){
if (s[j] == -s[i]){ p = j; break; }
}
ans += psh(s, p, i+1);
if (s[i] > s[i+1]){ swap(s[i], s[i+1]); ans += 1; }
}
return ans;
}