CF1198B.Welfare State

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

There is a country with nn citizens. The ii -th of them initially has aia_{i} money. The government strictly controls the wealth of its citizens. Whenever a citizen makes a purchase or earns some money, they must send a receipt to the social services mentioning the amount of money they currently have.

Sometimes the government makes payouts to the poor: all citizens who have strictly less money than xx are paid accordingly so that after the payout they have exactly xx money. In this case the citizens don't send a receipt.

You know the initial wealth of every citizen and the log of all events: receipts and payouts. Restore the amount of money each citizen has after all events.

输入格式

The first line contains a single integer nn ( 1n21051 \le n \le 2 \cdot 10^{5} ) — the numer of citizens.

The next line contains nn integers a1a_1 , a2a_2 , ..., ana_n ( 0ai1090 \le a_{i} \le 10^{9} ) — the initial balances of citizens.

The next line contains a single integer qq ( 1q21051 \le q \le 2 \cdot 10^{5} ) — the number of events.

Each of the next qq lines contains a single event. The events are given in chronological order.

Each event is described as either 1 p x ( 1pn1 \le p \le n , 0x1090 \le x \le 10^{9} ), or 2 x ( 0x1090 \le x \le 10^{9} ). In the first case we have a receipt that the balance of the pp -th person becomes equal to xx . In the second case we have a payoff with parameter xx .

输出格式

Print nn integers — the balances of all citizens after all events.

输入输出样例

  • 输入#1

    4
    1 2 3 4
    3
    2 3
    1 2 2
    2 1
    

    输出#1

    3 2 3 4 
    
  • 输入#2

    5
    3 50 2 1 10
    3
    1 2 0
    2 8
    1 3 20
    

    输出#2

    8 8 20 8 10 
    

说明/提示

In the first example the balances change as follows: 1 2 3 4 \rightarrow 3 3 3 4 \rightarrow 3 2 3 4 \rightarrow 3 2 3 4

In the second example the balances change as follows: 3 50 2 1 10 \rightarrow 3 0 2 1 10 \rightarrow 8 8 8 8 10 \rightarrow 8 8 20 8 10

首页