At an old railway station you may still encounter one of the

At an old railway station, you may still encounter one of the last remaining “train swappers”. A train

swapper is an employee of the railroad, whose sole job it is to rearrange the carriages of trains.

Once the carriages are arranged in the optimal order, all the train driver has to do, is drop the

carriages off, one by one, at the stations for which the load is meant.

The title “train swapper” stems from the first person who performed this task, at a station close to

a railway bridge. Instead of opening up vertically, the bridge rotated around a pillar in the center of

the river. After rotating the bridge 90 degrees, boats could pass left or right.

The first train swapper had discovered that the bridge could be operated with at most two carriages

on it. By rotating the bridge 180 degrees, the carriages switched place, allowing him to rearrange the

carriages (as a side effect, the carriages then faced the opposite direction, but train carriages can move

either way, so who cares).

Now that almost all train swappers have died out, the railway company would like to automate

their operation. Part of the program to be developed, is a routine which decides for a given train the

least number of swaps of two adjacent carriages necessary to order the train. Your assignment is to

create that routine.

Input

The input contains on the first line the number of test cases (N ). Each test case consists of two input

lines. The first line of a test case contains an integer L , determining the length of the train (0 L 50 ).

The second line of a test case contains a permutation of the numbers 1 through L , indicating the current

order of the carriages. The carriages should be ordered such that carriage 1 comes first, then 2, etc.

with carriage L coming last.

Output

For each test case output the sentence: ‘Optimal train swapping takes S swaps. ’ where S is an

integer.

Sample Input

331

3 2

44

3 2 1

22

1

Sample Output

Optimal train swapping takes 1 swaps.

Optimal train swapping takes 6 swaps.

Optimal train swapping takes 1 swaps.

Solution

#include<iostream>

using namespace std;

#include<string>

#include<stdio.h>

#include<cstring>

#include<math.h>

#include<queue>

#include<stdlib.h>

// merging the sorting//

int A[51];

int T[102];

long int num=0;

void merge_sort( int *A, int x, int y, int *T)

{

if( y-x>1)

{

int m=x+(y-x)/2;

int p=x, q=m, i=x;

merge_sort(A,x,m,T);

merge_sort(A,m,y,T);

while( p<m || q<y)

{

if( q>=y || ( p<m && A[p]<=A[q])) T[i++]=A[p++];

else { T[i++]=A[q++]; num+=m-p;}

}

for( i=x; i<y; ++i)

A[i]=T[i];

}

}

int main()

{

int N;

cin>>N;

while( N–!=0)

{

int n;

cin>>n;

for( int i=0; i!=n; ++i)

cin>>A[i];

num=0;

merge_sort(A,0,n,T);

cout<<“Optimal train swapping takes “<<num<<” swaps.”<<endl;

}

return 0;
}

At an old railway station, you may still encounter one of the last remaining “train swappers”. A train swapper is an employee of the railroad, whose sole job it
At an old railway station, you may still encounter one of the last remaining “train swappers”. A train swapper is an employee of the railroad, whose sole job it
At an old railway station, you may still encounter one of the last remaining “train swappers”. A train swapper is an employee of the railroad, whose sole job it

Get Help Now

Submit a Take Down Notice

Tutor
Tutor: Dr Jack
Most rated tutor on our site