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