이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/**
* author: tourist
* created:
**/
#include "shoes.h"
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "algo/debug.h"
#else
#define debug(...) 42
#endif
long long count_swaps(vector<int> a) {
int n = a.size() / 2;
long long swaps = 0;
for (int i = 0; i < 2 * n; i += 2) {
int index = -1;
for (int j = i + 1; j < 2 * n; j++) {
if (a[i] + a[j] == 0) {
index = j;
break;
}
}
while (a[i] > 0 || a[i] + a[i + 1] != 0) {
swap(a[index], a[index - 1]);
swaps++;
index--;
}
}
return swaps;
}
# | 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... |