| Train Swapping |
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 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 should 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.
#include <stdio.h>
#include <math.h>
#include <string.h>
int main()
{
int n,t,s[55];
scanf("%d",&n);
for(int i=1;i<=n;i++)
{
int num=0;
scanf("%d",&t);
for(int j=0;j<t;j++)
scanf("%d",&s[j]);
for(int j=0;j<t-1;j++)
for(int k=0;k<t-j-1;k++)
if(s[k]>s[k+1])
{
int temp=s[k];
s[k]=s[k+1];
s[k+1]=temp;
num++;
}
printf("Optimal train swapping takes %d swaps.\n",num);
}
return 0;
}
本文介绍了一种基于交换相邻火车车厢来实现车厢排序的算法。该算法的目标是最小化车厢达到正确顺序所需的交换次数。文章详细解释了算法的工作原理,并提供了一个具体的实现案例。
1217

被折叠的 条评论
为什么被折叠?



