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