BNU 4208 Bubble sort (想法题)

http://acm.bnu.edu.cn/bnuoj/problem_show.php?pid=4208


注意题目是让求趟数,所以比较原序列与排序后序列中位置相差最大的就是答案。


PS:也可以用反序表来思考。参见《计算机程序设计艺术》第三卷5.1.1


完整代码:

/*136ms,1408KB*/

#include<cstdio>
#include<algorithm>
using namespace std;

int a[10005], Map[10005];

int main()
{
	int n, t, i, maxn;
	scanf("%d", &t);
	while (t--)
	{
		scanf("%d", &n);
		for (i = 0; i < n; ++i)
		{
			scanf("%d", &a[i]);
			Map[a[i]] = i;
		}
		sort(a, a + n);
		maxn = 0;
		for (i = 0; i < n; ++i)
			maxn = max(maxn, Map[a[i]] - i);
		printf("%d\n", maxn);
	}
	return 0;
}

你可能感兴趣的:(C++,ACM,BNU)