이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
#define REP(i,a,b) for(int i=a; i<b; i++)
ll count_swaps(vector<int> a){
ll swaps=0;
bool correct=false;
while(!correct){
ll d=0; ll e=1;
for(ll i=1; i<(int)a.size()/2; i++){
if(a[d]== -a[e]){
correct=true; d+=1; e+=1;continue;
}else{
correct=false;
ll b=a[e];
ll c=a[d];
a[e]=c;
a[d]=b;d+=2;e+=2;
swaps+=1;
}
}
}
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... |