zoukankan      html  css  js  c++  java
  • hdu 6215 -- Brute Force Sorting(双向链表+队列)

    题目链接

    Problem 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[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 again.
    Help Beerus predict the final array.
     
    Input
    The first line of input contains an integer T (1T10) 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 100000.
    The second line describes the array with N positive integers A[1],A[2],,A[N] where each integer A[i] satisfies 1A[i]100000.
     
    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 M integers 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
     
     

    题意: 有一个长为 n 的数列a[1]~a[n],现在对这个数列进行删除操作,如果 a[i]>a[i+1] 则删去 a[i] 和 a[i+1],进行完一轮之后如果还有不满足的数,则进行第二轮删除操作,求最后剩下的数的个数,并且输出这些数?

    思路: 使用双向链表进行模拟,对于每一个节点记录其左边的节点和右边节点的下标,首先把1~n的下标都放入队列中,每次从队列中取出一个下标now , pre=a[now].l , next=a[now].r , 判断a[now].x<=a[next].x , 如果满足则表示合理,从队列中取下一个数;否则将 pre 放入队列,因为现在要模拟删除 now 和 next ,删除之后可能pre和下一个节点大小关系就不合理了,所以需要放入队列中,另外还要进行

             a[pre].r=a[next].r;
             a[a[next].r].l=pre;
             a[next].l=pre;

        前两个很明显表示删除now和next,最后一个a[next].l=pre,是因为可能next也在队列中,下一个要判断是否删除 next 和 a[next].r , 删除之后都需要将链表前后连接起来,例如对于n=5 , 2 5 3 1 4这样的数据,删除5和3数值后(对应的下表为2和3,下标从1开始),下一个3和1也不满足。

    代码如下:

    #include <iostream>
    #include <algorithm>
    #include <cstdio>
    #include <cstring>
    #include <queue>
    using namespace std;
    const int N=1e5+5;
    struct Node
    {
        int l,r;
        int x;
    }a[N];
    queue<int>Q;
    
    int main()
    {
        int T; cin>>T;
        while(T--)
        {
            int n; scanf("%d",&n);
            for(int i=1;i<=n;i++)
            {
                scanf("%d",&a[i].x);
                a[i].l=i-1;
                a[i].r=i+1;
                Q.push(i);
            }
            a[0].r=1; a[n+1].x=9999999;
            while(!Q.empty())
            {
                int now=Q.front(); Q.pop();
                int pre=a[now].l;
                int next=a[now].r;
                if(a[now].x>a[next].x)
                {
                    Q.push(pre);
                    a[pre].r=a[next].r;
                    a[a[next].r].l=pre;
                    a[next].l=pre;
                }
            }
            int ans=0;
            int now=a[0].r;
            while(now<=n)
            {
                ans++;
                now=a[now].r;
            }
            printf("%d
    ",ans);
            now=a[0].r;
            while(now<=n)
            {
                printf("%d ",a[now].x);
                now=a[now].r;
            }
            puts("");
        }
        return 0;
    }
  • 相关阅读:
    [图论入门]图的储存
    [五年CSP三年模拟]洛谷2020初赛模拟赛分析
    [五年CSP三年模拟]CSP2020-J冲刺
    [算法入门]KMP算法
    [算法入门]单调队列
    有关递推与递归的回顾
    软工实践个人总结
    第02组 每周小结 (3/3)
    第02组 每周小结 (2/3)
    第02组 每周小结 (1/3)
  • 原文地址:https://www.cnblogs.com/chen9510/p/7768436.html
Copyright © 2011-2022 走看看