이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "shoes.h"
#include<ext/rope>
#define I inline void
using namespace __gnu_cxx ;
using namespace std ;
using ll = long long ;
using ld = long double ;
const int N = 3000 + 7 , mod = 1e9 + 7 ;
// How interesting!
int n;
long long count_swaps(std::vector<int> s) {
int n = (int) s.size() ;
ll ret = 0 ;
rope<int> shoes (n * 2 , 0) ;
for(int i = 0 ;i < n;i ++){
shoes.mutable_reference_at(i) = s[i] ;
}
for(int i = 0 ;i < n / 2; i++){
int pos = shoes.find(-shoes[0]) ;
ret += pos - 1;
if( shoes[0] > 0 ){
ret++ ;
}
shoes.erase(pos , 1) ;
shoes.erase(0 , 1) ;
}
return ret;
}
# | 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... |