zoukankan      html  css  js  c++  java
  • codeforces 631C C. Report

    C. Report
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Each month Blake gets the report containing main economic indicators of the company "Blake Technologies". There are n commodities produced by the company. For each of them there is exactly one integer in the final report, that denotes corresponding revenue. Before the report gets to Blake, it passes through the hands of m managers. Each of them may reorder the elements in some order. Namely, the i-th manager either sorts first ri numbers in non-descending or non-ascending order and then passes the report to the manageri + 1, or directly to Blake (if this manager has number i = m).

    Employees of the "Blake Technologies" are preparing the report right now. You know the initial sequence ai of length n and the description of each manager, that is value ri and his favourite order. You are asked to speed up the process and determine how the final report will look like.

    Input

    The first line of the input contains two integers n and m (1 ≤ n, m ≤ 200 000) — the number of commodities in the report and the number of managers, respectively.

    The second line contains n integers ai (|ai| ≤ 109) — the initial report before it gets to the first manager.

    Then follow m lines with the descriptions of the operations managers are going to perform. The i-th of these lines contains two integersti and ri (1 ≤ ri ≤ n), meaning that the i-th manager sorts the first ri numbers either in the non-descending (if ti = 1) or non-ascending (if ti = 2) order.

    Output

    Print n integers — the final report, which will be passed to Blake by manager number m.

    Examples
    input
    3 1
    1 2 3
    2 2
    output
    2 1 3 
    input
    4 2
    1 2 4 3
    2 3
    1 2
    output
    2 4 1 3 
    Note

    In the first sample, the initial report looked like: 1 2 3. After the first manager the first two numbers were transposed: 2 1 3. The report got to Blake in this form.

    In the second sample the original report was like this: 1 2 4 3. After the first manager the report changed to: 4 2 1 3. After the second manager the report changed to: 2 4 1 3. This report was handed over to Blake.

    题意:m次变换,把前ri个数要么升序要么降序排列,输出最后得顺序;

    思路:单调栈找到有效的操作顺序,再在两个操作范围没重合的的那些数填上剩下的最大的那些数或最小的那些数,talk is cheap,show you the code,见代码;

    AC代码:

    #include <bits/stdc++.h>
    using namespace std;
    const int N=2e5+4;
    int a[N],b[N],c[N],temp[N],ans[N];
    int n,m;
    stack<int>Q;
    int main()
    {
        scanf("%d%d",&n,&m);
        for(int i=1;i<=n;i++)scanf("%d",&a[i]);
        for(int i=1;i<=m;i++)scanf("%d%d",&b[i],&c[i]);
        Q.push(1);
        for(int i=2;i<=m;i++)
        {
            if(c[i]<c[Q.top()])Q.push(i);
            else if(c[i]==c[Q.top()]){Q.pop();Q.push(i);}
            else
            {
                    while(!Q.empty())
                    {
                        if(c[Q.top()]>c[i])break;
                        Q.pop();
                    }
                    Q.push(i);
            }
        }
        int len=Q.size();
        temp[0]=0;
        for(int i=1;i<=len;i++)
        {
            temp[i]=Q.top();
            Q.pop();
        }
        sort(a+1,a+c[temp[len]]+1);
        int high=c[temp[len]],low=1,num=c[temp[len]];
        for(int i=len;i>0;i--)
        {
            if(b[temp[i]]==1)
            {
               while(num>c[temp[i-1]])ans[num]=a[high],high--,num--;
            }
            else
            {
                while(num>c[temp[i-1]])ans[num]=a[low],low++,num--;
            }
        }
        for(int i=1;i<=c[temp[len]];i++)
        {
            printf("%d ",ans[i]);
        }
        for(int i=c[temp[len]]+1;i<=n;i++)
        {
            printf("%d ",a[i]);
        }
    
        return 0;
    }
  • 相关阅读:
    初识人工智能(二):机器学习(三):sklearn数据集
    初识人工智能(二):机器学习(一):sklearn特征抽取
    Python3标准库:json JavaScript对象记法
    Python3标准库:uuid 全局唯一标识符
    Python3标准库:http.cookies HTTP cookie
    Python3标准库:base64 用ASCII编码二进制数据
    Python3标准库:urllib.robotparser Internet蜘蛛访问控制
    初识人工智能(一):数据分析(四):pandas数据分析
    ubuntu18.04.4安装k8s
    elasticsearch7.5.0+kibana-7.5.0+cerebro-0.8.5集群生产环境安装配置及通过elasticsearch-migration工具做新老集群数据迁移
  • 原文地址:https://www.cnblogs.com/zhangchengc919/p/5243903.html
Copyright © 2011-2022 走看看