HDU1379 DNA Sorting

题目连接 http://acm.nyist.net/JudgeOnline/problem.php?pid=160

题目大意:

求逆序数,按排序程度从好到差排序(代数)。如果逆序数相同,则按原来顺序输出。wa了好几次,输出结果没看清就提交上去,唉。。。。。。。。在这里不能用简单sort。要stable_sort。因为sort排序如果逆序数相同则不分大小随机排序。

冒泡+ stable _sort==Accepted;

贴代码:




你可能感兴趣的:(sort)