# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
295348 | tzero | Arranging Shoes (IOI19_shoes) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <math.h>
using namespace std;
using ll = long long;
int main() {
int n;
scanf("%d", &n);
bool same_size = true;
vector<int> s(n);
for(int i = 0; i < 2 * n; i++) {
scanf("%d", &s[i]);
if(i > 0 && abs(s[i]) != abs(s[i - 1])) same_size = false;
}
if(n == 1) {
if(s[0] < 0) {
printf("0\n");
} else {
printf("1\n");
}
} else if(same_size) {
ll move_left = 0, move_right = 0;
int found_already = 0;
for(int i = 0; i < 2 * n; i++) if(s[i] > 0) {
int pos = found_already++ * 2;
move_left += abs(i - pos);
}
found_already = 0;
for(int i = 0; i < 2 * n; i++) if(s[i] > 0) {
int pos = found_already++ * 2 + 1;
move_right += abs(i - pos);
}
printf("%lld\n", min(move_left, move_right));
} else {
printf("%d\n", -1);
}
return 0;
}