# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
340609 | israeladewuyi | Arranging Shoes (IOI19_shoes) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<ll> vi;
typedef vector<string> vs;
#define PB push_back
#define pb pop_back
#define in insert
#define endl "\n"
const unsigned int M = 1000000007;
ll count_swaps(vi s){
ll n = s.size();
ll swaps = 0;
for(int i = 0; i < n-1; i++){
int y = abs(s[i]);
for(int j = i + 1; j< n; j++){
if(abs(s[j]) == y){
while(abs(s[i+1]) != y){
swap(s[j],s[j-1]);
swaps++;
j = j-1;
}
}
}
if(s[i] > 0)swaps++;
}
return swaps;
}
//int main(){
// vi v;
// v.PB(2);
// v.PB(-2);
// v.PB(2);
// v.PB(-2);
// cout<<count_swaps(v);
//}