299 Train Swapping (Train switching)

Source: Internet
Author: User

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 completed MED 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 cocould pass left or right.

The first train swapper had discovered that the bridge cocould 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 wowould 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 Specification
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 (). 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 shocould be ordered such that carriage 1 comes first, then 2, etc. with carriage L coming last.


Output Specification
For each test case output the sentence: 'optimal train swapping takes S swaps. 'where S is an integer.


Example Input

3
3
1 3 2
4
4 3 2 1
2
2 1
Example Output

Optimal train swapping takes 1 swaps.
Optimal train swapping takes 6 swaps.
Optimal train swapping takes 1 swaps.

 


Question requirements:

By looking at the questions, you will find that the Bubble Sorting (Ascending Order) is actually used to record the number of exchanges.

 

#include <stdio.h>#include <stdlib.h>#include <string.h>#define swap(m,n) {(m)=(m)^(n);(n)=(m)^(n);(m)=(m)^(n);}int main(){    int T, n, i, j;    int num[55];    int count;    scanf("%d", &T);    while(T--){        scanf("%d", &n);        memset(num, 0, sizeof(num));        for(i = 0; i<n; i++)            scanf("%d", &num[i]);        count = 0;        for(i = 0; i<n-1; i++){            for(j = 1; j<n-i; j++){                if(num[j-1]>num[j]){                    count++;                    swap(num[j-1], num[j]);                }            }        }        printf("Optimal train swapping takes %d swaps.\n", count);    }    return 0;}

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.