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

CodeForces - 631C Report

时间:2017-06-24 16:22:46      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:lib   numbers   cto   indicator   sed   like   mat   dir   stack   

#include "iostream"  
#include "cstdio"  
#include "cstring"  
#include "algorithm"  
#include "queue"  
#include "stack"  
#include "cmath"  
#include "utility"  
#include "map"  
#include "set"  
#include "vector"  
#include "list"  
#include "string"  
#include "cstdlib"  
using namespace std;  
typedef long long ll;  
#define X first  
#define Y second  
const int MOD = 1e9 + 7;  
const int INF = 0x3f3f3f3f;  
const int MAXN = 2e5 + 5;  
int n, m, num;  
int main(int argc, char const *argv[])  
{  
    scanf("%d%d", &n, &m);  
    std::vector<int> a(n), b(n + 2, -1), c(n + 2, -1);  
    for(int i = 0; i < n; ++i)  
        cin >> a[i];  
    for(int i = 0; i < m; ++i) {  
        int x, y;  
        scanf("%d%d", &x, &y);  
        b[y - 1] = x;  
        c[y - 1] = i + 1;  
        num = max(num, y);  
    }  
    std::vector<int> tmp = a, ans = a;  
    sort(tmp.begin(), tmp.begin() + num);  
    int x = 0, y = num - 1;  
    for(int i = num - 1; i >= 0; --i) {  
        if(c[i] < c[i + 1]) {  
            c[i] = c[i + 1];  
            b[i] = b[i + 1];  
        }  
        if(b[i] == 2) ans[i] = tmp[x++];  
        else ans[i] = tmp[y--];  
    }  
    for(int i = 0; i < n; ++i)  
        printf("%d ", ans[i]);  
    return 0;  
}

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 integers tiand 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 

CodeForces - 631C Report

标签:lib   numbers   cto   indicator   sed   like   mat   dir   stack   

原文地址:http://www.cnblogs.com/Aragaki/p/7073423.html

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