이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "shoes.h"
#define fi first
#define sz(x) (int)x.size()
#define se second
#define pll pair <ll,ll>
#define pii pair <int,int>
using namespace std;
typedef long long ll;
typedef long double ld;
const ll N = 2e5;
long long count_swaps(vector<int> s) {
ll n = sz(s) / 2, ans = 0;
vector <int> b = s;
for(int i = 0; i < n * 2; i += 2){
if(b[i] < 0){
int j = i + 1;
while(-b[j] != b[i])j++;
while(j > i + 1)swap(b[j], b[j - 1]), j--, ans++;
}else{
int j = i + 1;
while(-b[j] != b[i])j++;
while(j > i)swap(b[j], b[j - 1]), j--, ans++;
}
}
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... |