# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
165251 | piyushkumar | Arranging Shoes (IOI19_shoes) | Java | 0 ms | 0 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.
class Codechef {
public static long count_swaps(int[] n) {
long c=0;
for (int i=0;i<n.length;i+=2){
int j=0;
for (j=i;j<n.length;j++){
if(n[j]<0)
break;
}
while (j>i){
int d=n[j-1];
n[j-1]=n[j];
n[j]=d;
c++;
j--;
}
int x=-n[i];
for (j=i+1;j<n.length;j++){
if(n[j]==x)
break;;
}
while (j>i+1){
int d=n[j-1];
n[j-1]=n[j];
n[j]=d;
c++;
j--;
}
}
return c;
}
}