maya!!!又FST。。。瞬间少了100ratingQAQ。。。明明都注意到有风险了干嘛还不管蛙qaqaqaqaq
好吧。。然后这题。。。又是啥思路都没。。然后又是在汪聚聚的点拨下我才想起上次不是才做过差不多的题嘛。。这么个做题法自己这么会有长进呢~~~
这题可以仿照上次的第一个思路,直接开个数据进行修改。。然后主要处理的是修改的最终结果,所以可以不用update。。。
这个细节比较灵活。。语文不好说不清楚。。看代码吧。。
G. Mass Change Queries
time limit per test
memory limit per test
input
output
You are given an array a consisting of n integers. You have to process q queries to this array; each query is given as four numbers l, r, x and y, denoting that for every i such that l ≤ i ≤ r and ai = x you have to set ai equal to y.
Print the array after all queries are processed.
Input
The first line contains one integer n (1 ≤ n ≤ 200000) — the size of array a.
The second line contains n integers a1, a2, ..., an (1 ≤ ai ≤ 100) — the elements of array a.
The third line contains one integer q (1 ≤ q ≤ 200000) — the number of queries you have to process.
Then q lines follow. i-th line contains four integers l, r, x and y denoting i-th query (1 ≤ l ≤ r ≤ n, 1 ≤ x, y ≤ 100).
Output
Print n integers — elements of array a
Example
Input
5 1 2 3 4 5 3 3 5 3 5 1 5 5 1 1 5 1 5
Output
5 2 5 4 5