# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
282823 | Pichon5 | Arranging Shoes (IOI19_shoes) | C++17 | 1091 ms | 1912 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "shoes.h"
#include <bits/stdc++.h>
#define lcm(a,b) (a/__gcd(a,b))*b
#define fast ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define ll long long int
#define vi vector<int>
#define vll vector<ll>
#define pb push_back
#define F first
#define S second
#define mp make_pair
using namespace std;
long long count_swaps(std::vector<int> s) {
int n=s.size();
ll res=0;
/*int c;
bool ok=true;
for(int i=0;i<n/2;i++){
if(s[i]>0 or s[i+n/2]<0 or s[i]+s[i+n/2]!=0){
ok=false;
break;
}
}
if(ok==true){
n=s.size()/2;
for(int i=1;i<n;i++){
res+=i;
}
return res;
}*/
while(s.size()>0){
for(int l=1;l<s.size();l++){
if(s[l]+s[0]==0){
if(s[l]<0){
res+=l;
}else{
res+=l-1;
}
s.erase(s.begin()+l);
s.erase(s.begin()+0);
break;
}
}
}
//2 2 1 -1 -2
return res;
}
Compilation message (stderr)
# | 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... |