| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1295973 | turbat | Arranging Shoes (IOI19_shoes) | C++20 | 0 ms | 0 KiB |
#include "shoes.h"
using namespace std;
long long count_swaps(vector<int> s) {
int n = s.size(), ans = 0;
printf("hahahaha");
for (int i = 0; i < n; i += 2) {
int pos = i;
for (int j = i; j < n; j++)
if (s[j] == -s[i]) {
pos = j;
break;
}
for (int j = pos; j > i + 1; j--) {
if (s[j] == -s[i]) {
swap(s[j], s[j - 1]);
ans++;
}
}
if (s[i] > 0) {
swap(s[i], s[i + 1]);
ans++;
}
}
return ans;
}
