题面:

传送门

A. Out of Sorts

Input file: standard input
Output file: standard output
Time limit: 1 second
Memory limit: 256 megabytes
 
Keeping an eye on long term career possibilities beyond the farm, Bessie the cow has started learning algorithms from various on-line coding websites.
Her favorite algorithm thus far is "bubble sort". Here is Bessie’s implementation, in cow-code, for sorting an array A of length N.
 
sorted = false
while (not sorted):
      sorted = true
      moo
      for i = 0 to N-2:
            if A[i+1] < A[i]:
                  swap A[i], A[i+1]
                  sorted = false
 
Apparently, the "moo"command in cow-code does nothing more than print out "moo". Strangely, Bessie seems to insist on including it at various points in her code.
Given an input array, please predict how many times "moo"will be printed by Bessie’s code.
 
Input
The first line of input contains N (1 ≤ N ≤ 100,000). The next N lines describe A[0]...A[N −1], each being an integer in the range 0...10^9. Input elements are not guaranteed to be distinct.
 
Output
Print the number of times "moo" is printed.
 
Example
Input
5
1
5
3
8
2
Output
4
 

题目描述:

有一头奶牛在网站学会了冒泡排序,但是奶牛写的代码里面每进行一次排序前就会输出“moo”。现在给出一组数,执行奶牛的代码,求:输出“moo”的次数。
 

题目分析:

这道题其实就是求冒泡排序的次数。刚开始可能的想法是:求每个数的逆序数。但这个太麻烦了,因为是A题。我们要对冒泡排序的“性质”进行思考:首先,每进行一次冒泡排序,是不是都是从左到右扫一遍?其次,关键的语句 if A[i+1] < A[i],也就是 if A[i] > A[i+1],即当前第i个元素如果比下一个元素(第i+1个元素)大,那么就进行交换。假如第i个元素是最大的,那么,第i个元素就直接到数组的最后面:
比8要小的元素是不是被“挤”到前面了(数字3,6,7,5,1,4,0),往前面挪了一步,这时就完成了一次冒泡排序
那么,再进行一次冒泡排序,结果又是怎样呢?我们发现,进行第二次冒泡排序时,数字7被移动到后面:
比7要小的元素继续往前挪了一步(数字5, 1, 4, 0)。
 
观察到了这里,是不是发现了一些规律?其实我们只需要计算往前“挪”的数总共移动了多少步,是不是就可以算出冒泡排序的次数?但是我们怎么知道哪些数往前面移动了?我们把这些数排完序后,只需要计算每一个往前面移动过的数移动了多少步,取最大值就行了。
 
写代码时,我们可以用一个结构体保存每个数原来的下标,这样排完序后就可以找到之前这个数的位置,然后计算移动步数。
注意:这里的排序不能用sort函数,要用stable_sort函数,因为用sort函数会改变相同元素的相对位置,而冒泡排序是不会改变相同元素的相对位置的,所以要用stable_sort这个不会改变相同元素的相对位置的函数。最后不要忘记排好序后还要一次冒泡排序进行检查。
 
 
AC代码:
 1 #include <cstdio>
2 #include <cstring>
3 #include <iostream>
4 #include <cmath>
5 #include <set>
6 #include <algorithm>
7 using namespace std;
8 const int maxn = 1e6+5;
9 int n;
10 struct node{
11 long long a; //要进行排序的元素
12 long long p; //下标
13 };
14 node A[maxn];
15
16 bool cmp(node x, node y){ //比较函数
17 return x.a < y.a; //从小到大排序
18 }
19
20 int main(){
21 scanf("%d", &n);
22
23 for(int i = 0; i < n; i++){
24 scanf("%lld", &A[i].a);
25 A[i].p = i;
26 }
27
28 stable_sort(A, A+n, cmp); //排序
29
30 int moo = 0; //初始化最大值
31 for(int i = 0; i < n; i++){
32 //往前面移动过的数就是之前没排序前的下标大于排序后的下标
33 //这里可以与求最大值结合在一起判断
34 if(A[i].p-i > moo){ //A[i]-i就是移动的步数
35 moo = A[i].p-i;
36 }
37 }
38
39 printf("%d\n", moo+1); //记得要+1
40 return 0;
41 }
 

2019 GDUT Rating Contest III : Problem A. Out of Sorts的更多相关文章

  1. 2019 GDUT Rating Contest III : Problem D. Lemonade Line

    题面: D. Lemonade Line Input file: standard input Output file: standard output Time limit: 1 second Memo ...

  2. 2019 GDUT Rating Contest III : Problem E. Family Tree

    题面: E. Family Tree Input file: standard input Output file: standard output Time limit: 1 second Memory ...

  3. 2019 GDUT Rating Contest III : Problem C. Team Tic Tac Toe

    题面: C. Team Tic Tac Toe Input file: standard input Output file: standard output Time limit: 1 second M ...

  4. 2019 GDUT Rating Contest II : Problem F. Teleportation

    题面: Problem F. Teleportation Input file: standard input Output file: standard output Time limit: 15 se ...

  5. 2019 GDUT Rating Contest I : Problem H. Mixing Milk

    题面: H. Mixing Milk Input file: standard input Output file: standard output Time limit: 1 second Memory ...

  6. 2019 GDUT Rating Contest I : Problem A. The Bucket List

    题面: A. The Bucket List Input file: standard input Output file: standard output Time limit: 1 second Me ...

  7. 2019 GDUT Rating Contest I : Problem G. Back and Forth

    题面: G. Back and Forth Input file: standard input Output file: standard output Time limit: 1 second Mem ...

  8. 2019 GDUT Rating Contest II : Problem G. Snow Boots

    题面: G. Snow Boots Input file: standard input Output file: standard output Time limit: 1 second Memory ...

  9. 2019 GDUT Rating Contest II : Problem C. Rest Stops

    题面: C. Rest Stops Input file: standard input Output file: standard output Time limit: 1 second Memory ...

随机推荐

  1. Leetcode(53)-最大子序和

    给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和. 示例: 输入: [-2,1,-3,4,-1,2,1,-5,4], 输出: 6 解释: 连续子数组 ...

  2. HDU 3966 Aragorn's Story(树链剖分)题解

    题意:给一棵树,要求你对一个路径上的值进行加减,查询某个点的值 思路:重链剖分. 由于分了轻重儿子,我每次到重儿子的top只要O(1),经过的轻儿子最多logn条,那么我每次往上跳最多跳logn次. ...

  3. HDU 3681 Prison Break(状压DP + BFS)题解

    题意:一张图,F是起点,Y是必须要到的点,D不能走,G可以充电.可以往四个方向走,每走一步花费一个电,走到G可以选择充满电或者不充,每个G只能充一次.问你走遍Y的最小初始点亮.number(G) + ...

  4. python 爬取腾讯视频的全部评论

    一.网址分析 查阅了网上的大部分资料,大概都是通过抓包获取.但是抓包有点麻烦,尝试了F12,也可以获取到评论.以电视剧<在一起>为例子.评论最底端有个查看更多评论猜测过去应该是 Ajax ...

  5. CSS 检测 IE 浏览器

    CSS 检测 IE 浏览器 <!--[if IE]> <link href="ie.css" rel="stylesheet"> < ...

  6. SVG tada &#127881; animation effects

    SVG tada animation effects symbol & use <svg viewBox="0 0 80 20" xmlns="http:/ ...

  7. Microsoft Solitaire Collection

    Microsoft Solitaire Collection game https://zone.msn.com/gameplayer/gameplayerHTML.aspx?game=mssolit ...

  8. c++ 获取兄弟窗口

    // 返回给定窗口上方窗口的句柄. HWND prevSibling = GetWindow((HWND)0x1011C, GW_HWNDPREV); printf("%x\n", ...

  9. 人物传记-BILL RAY:低谷时的信念,决定你能走多远

    自2018年全球经济危机以来,以工作为重的成年人们一直备受打击.尤其是2020年,全球贸易争端使得经济下滑严重,很多公司倒闭破产,有些人甚至从富豪变成了负债者,走向了人生低谷.其实,每个人都会遇到人生 ...

  10. TCP编程详解

    目录 数据包格式 建立连接(三次握手) 数据传输 断开连接(四次挥手) 基础 客户端流程 编码 TCP服务端流程 TCP服务端编码 参考文献 TCP把连接作为最基本的对象,每一条TCP连接都有两个端点 ...