码迷,mamicode.com
首页 > 其他好文 > 详细

HDU - 6215 2017 ACM/ICPC Asia Regional Qingdao Online J - Brute Force Sorting

时间:2019-04-19 23:52:20      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:ret   add   一个   getc   blank   sim   3.0   element   osi   

Brute Force Sorting

Time Limit: 1 Sec  Memory Limit: 128 MB

题目连接

http://acm.hdu.edu.cn/showproblem.php?pid=6215

Description

Beerus needs to sort an array of N integers. Algorithms are not Beerus‘s strength. Destruction is what he excels. He can destroy all unsorted numbers in the array simultaneously. A number A[i] of the array is sorted if it satisfies the following requirements.
1. A[i] is the first element of the array, or it is no smaller than the left one A[i-1]. A[i1].
2. A[i] is the last element of the array, or it is no bigger than the right one A[i+1].
In[1,4,5,2,3], for instance, the element 5 and the element 2 would be destoryed by Beerus. The array would become [1,4,3]. If the new array were still unsorted, Beerus would do it againHelp Beerus predict the final array.

input
The first line of input contains an integer T(1<=T<=10) which is the total number of test cases.
For each test case, the first line provides the size of the inital array which would be positive and no bigger than
  1000.
The second line describes the array with N positive integers A[1],A[2],...,A[N] where each integer A[i] satisfies 1<=A[i]<=10000.
0.

 

Output

For eact test case output two lines.
The first line contains an integer M which is the size of the final array.
The second line contains Mintegers describing the final array.
If the final array is empty,M should be 0 and the second line should be an empty line.

 

Sample Input

5

5

1 2 3 4 5

5

5 4 3 2 1

5

1 2 3 2 1

5

1 3 5 4 2

5

2 4 1 3 5

 

Sample Output

5

1 2 3 4 5

0

2

1 2

2

1 3

3

2 3 5

HINT

 

题意

有一个长度为n序列,如果第i(1<=i<=n)位上的值ai<ai-1 || ai>ai+1那么这一位需要被删除。

删除完后,再重复以上操作,直到序列单调不降。

题解:

先考虑暴力,即每次扫一遍数组,删除该删的数,直到不能删为止。

肯定有很多数扫过一遍第二次就可以不用扫了,顺着这个方向想,我们怎么节省扫描次数呢。

我们假设第一次删除了一些数,有些连着被删除的数,我将其称为一段(一个数也算一段),那么我们只需要记住每一段被删除的数的前一个数(未删除的数)即可,(想一想为什么)

将其存入一个队列,下次就直接扫这个队列即可。

具体实践,我们可以用链表记录每个位置的前一个未删除的位置以及后一个未删除的位置。

代码:

 

技术图片
 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 #define N 1000050
 4 int a[N],n,last[N],nex[N],f[N];
 5 template<typename T>void read(T&x)
 6 {
 7   int k=0;char c=getchar();
 8   x=0;
 9   while(!isdigit(c)&&c!=EOF)k^=c==-,c=getchar();
10   if(c==EOF)exit(0);
11   while(isdigit(c))x=x*10+c-0,c=getchar();
12   x=k?-x:x;
13 }
14 
15 void work()
16 {
17   read(n);
18   nex[0]=1;
19   for(int i=1;i<=n;i++)
20     read(a[i]),nex[i]=i+1,last[i]=i-1;
21   a[n+1]=123456789;
22   int sum=0;
23   int k=0,flag=0;
24   memset(f,0,sizeof(f));
25   queue<int> Q[2];
26   while(!Q[k].empty())Q[k].pop();
27   while(!Q[1-k].empty())Q[1-k].pop();
28   for(int i=1;i<=n;i++)Q[k].push(i);
29   while(1)
30     {
31       flag=0;
32       //Q[1-k].clear();
33       while(!Q[k].empty())
34     {
35       int x=Q[k].front();Q[k].pop();
36       if (a[x]>a[nex[x]])
37         {
38           //sum+=f[x]==0+f[nex[x]]==0;
39           f[x]=1; f[nex[x]]=1;
40           flag=1;
41           nex[last[x]]=nex[nex[x]];
42           last[nex[nex[x]]]=last[x];
43           last[nex[x]]=last[x];
44           if (f[last[x]]==0&&(Q[1-k].empty()||Q[1-k].back()!=last[x]))Q[1-k].push(last[x]);
45         }
46     }
47       if (flag==0)break;
48       k=k^1;
49     }
50   for(int i=1;i<=n;i++)
51     {
52       if(f[i]==0)sum++;
53     }
54   printf("%d\n",sum);
55   for(int i=1;i<=n;i++)
56     {
57       if(f[i]==0)
58       printf("%d ",a[i]);
59     }
60   printf("\n");
61 }
62 int main()
63 {
64 #ifndef ONLINE_JUDGE
65   freopen("aa.in","r",stdin);
66 #endif
67   int q;
68   read(q);
69   while(q--)
70     {
71       work();
72     }
73   return 0;
74 }
View Code

 

HDU - 6215 2017 ACM/ICPC Asia Regional Qingdao Online J - Brute Force Sorting

标签:ret   add   一个   getc   blank   sim   3.0   element   osi   

原文地址:https://www.cnblogs.com/mmmqqdd/p/10739456.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!