# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
900716 | ozner77 | Arranging Shoes (IOI19_shoes) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <bits/stdc++.h>
#include <vector>1
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
long long count_swaps(vector<int> s) {
long long swaps=0;
vector<int> a;
vector<int> b;
int e=s.size();
for(int i=0;i<e;e++){
if(s[i]<0 && i%2==0){
continue;
}else if(s[i]<0){
b.push_back(i);
}else{
a.push_back(i);
}
}
int xd=a.size();
for(int j=0;j<xd;j++){
swaps+=(b[j]-a[j])
}
return swaps;
}