K.Bro Sorting

Time Limit: 2000/2000 MS (Java/Others)    Memory Limit: 512000/512000 K (Java/Others)
Total Submission(s): 0    Accepted Submission(s):
0

Problem Description

Matt’s friend K.Bro is an ACMer.

Yesterday, K.Bro learnt an algorithm: Bubble sort. Bubble sort will compare each pair of adjacent items and swap them if they are in the wrong order. The process repeats until no swap is needed.

Today, K.Bro comes up with a new algorithm and names it K.Bro Sorting.

There are many rounds in K.Bro Sorting. For each round, K.Bro chooses a number, and keeps swapping it with its next number while the next number is less than it. For example, if the sequence is “1 4 3 2 5”, and K.Bro chooses “4”, he will get “1 3 2 4 5” after this round. K.Bro Sorting is similar to Bubble sort, but it’s a randomized algorithm because K.Bro will choose a random number at the beginning of each round. K.Bro wants to know that, for a given sequence, how many rounds are needed to sort this sequence in the best situation. In other words, you should answer the minimal number of rounds needed to sort the sequence into ascending order. To simplify the problem, K.Bro promises that the sequence is a permutation of 1, 2, . . . , N .

Input

The first line contains only one integer T (T ≤ 200), which indicates the number of test cases. For each test case, the first line contains an integer N (1 ≤ N ≤ 106).

The second line contains N integers ai (1 ≤ ai ≤ N ), denoting the sequence K.Bro gives you.

The sum of N in all test cases would not exceed 3 × 106.

Output

For each test case, output a single line “Case #x: y”, where x is the case number (starting from 1), y is the minimal number of rounds needed to sort the sequence.

Sample Input

2

5

5 4 3 2 1

5

5 1 2 3 4

Sample Output

Case #1: 4

Case #2: 1

Hint

In the second sample, we choose “5” so that after the ?rst round, sequence becomes “1 2 3 4 5”, and the algorithm completes.

 1 #include<iostream>
 2 #include<cstring>
 3 #include<cstdio>
 4 #include<algorithm>
 5 using namespace std;
 6 const int ms=1000005;
 7 int a[ms];
 8 int n,p,cnt;
 9 void input()
10 {
11     scanf("%d",&n);
12     for(int i=0;i<n;i++)
13         scanf("%d",&a[i]);
14 }
15
16 void solve()
17 {
18     cnt=0;
19     int flag=a[n-1];
20     for(int i=n-2;i>=0;i--)
21     {
22         if(a[i]>flag)
23             cnt++;
24         else
25             flag=a[i];
26     }
27     printf("Case #%d: %d\n",p++,cnt);
28 }
29 int main()
30 {
31     int T;
32     scanf("%d",&T);
33     p=1;
34     while(T--)
35     {
36         input();
37         solve();
38     }
39     return 0;
40 }
时间: 2024-10-12 12:16:39

K.Bro Sorting的相关文章

HDU 5122 K.Bro Sorting(模拟——思维题详解)

题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=5122 Problem Description Matt's friend K.Bro is an ACMer. Yesterday, K.Bro learnt an algorithm: Bubble sort. Bubble sort will compare each pair of adjacent items and swap them if they are in the wrong o

K.Bro Sorting(杭电5122)(2014ACM/ICPC亚洲区北京站)

K.Bro Sorting Time Limit: 2000/2000 MS (Java/Others)    Memory Limit: 512000/512000 K (Java/Others) Total Submission(s): 67    Accepted Submission(s): 39 Problem Description Matt's friend K.Bro is an ACMer. Yesterday, K.Bro learnt an algorithm: Bubbl

HDOJ 5122 K.Bro Sorting 水题

K.Bro Sorting Time Limit: 2000/2000 MS (Java/Others)    Memory Limit: 512000/512000 K (Java/Others) Total Submission(s): 71    Accepted Submission(s): 40 Problem Description Matt's friend K.Bro is an ACMer. Yesterday, K.Bro learnt an algorithm: Bubbl

HDU5122 K.Bro Sorting 【树状数组】

K.Bro Sorting Time Limit: 2000/2000 MS (Java/Others)    Memory Limit: 512000/512000 K (Java/Others) Total Submission(s): 10    Accepted Submission(s): 9 Problem Description Matt's friend K.Bro is an ACMer. Yesterday, K.Bro learnt an algorithm: Bubble

K - K.Bro Sorting

Description Matt’s friend K.Bro is an ACMer. Yesterday, K.Bro learnt an algorithm: Bubble sort. Bubble sort will compare each pair of adjacent items and swap them if they are in the wrong order. The process repeats until no swap is needed. Today, K.B

hdu 5122 K.Bro Sorting (水题)

Problem Description Matt’s friend K.Bro is an ACMer. Yesterday, K.Bro learnt an algorithm: Bubble sort. Bubble sort will compare each pair of adjacent items and swap them if they are in the wrong order. The process repeats until no swap is needed. To

HDU 5122 K.Bro Sorting(2014北京区域赛现场赛K题 模拟)

这题定义了一种新的排序算法,就是把一串序列中的一个数,如果它右边的数比它小 则可以往右边移动,直到它右边的数字比它大为止. 易得,如果来模拟就是O(n^2)的效率,肯定不行 想了一想,这个问题可以被转化成 求这一串序列当中每个元素,它的右边是否存在小于它的数字,如果存在,则++ans 一开始没想到诶= = 不应该不应该 1 //#pragma comment(linker, "/STACK:16777216") //for c++ Compiler 2 #include <std

1011 K.Bro Sorting

·2号题 ·举个例子来进行说明:  5 2 3 1 7 4 6 思路: 维护一个最小值t,初始为最后一个数,这里为6: 我们从后向前考虑,先看末尾6,其前面为4,不需要动,更改t为更小的4: 再向前,为7,此时7>t,那么对于7来说,其肯定是需要动的,令num++: 再向前,1<t,令t=1: 再向前,因为t为1,所有值都会>t,对于3.2.5来说,都需要进行num++. 这里num加了4次,结果为4. 解释: 因为题目中交换数字有一个特点,就是选择一个数字x,从前向后进行,一直进行到x

HDU5122 K.Bro Sorting (树状数组)

题意:把冒泡排序的规则改了一下,每次循环可以对任意数进行一次冒泡,问最少需要多少次循环 思路:想一下就可以知道只要需要多少的数的右边有比它小的数 直接用一个tmpmin记录当前右边的最小值即可,我用了树状数组就当练习一下 #include<cstdio> #include<cstring> #include<algorithm> #include<iostream> using namespace std; const int N=1e6+100 ; int