Codeforces Round #394 (Div. 2) Dasha and Very Difficult Problem

来源:互联网 发布:js图片转base64编码 编辑:程序博客网 时间:2024/05/22 03:08

D. Dasha and Very Difficult Problem

time limit per test:2 seconds

memory limit per test:256 megabytes

input:standard input

output:standard output

Dasha logged into the system and began to solve problems. One of them is as follows:

Given two sequences a and b of length n each you need to write a sequence c of length n, the i-th element of which is calculated as follows: ci = bi - ai.

About sequences a and b we know that their elements are in the range from l to r. More formally, elements satisfy the following conditions: l ≤ ai ≤ r and l ≤ bi ≤ r. About sequence c we know that all its elements are distinct.

Dasha wrote a solution to that problem quickly, but checking her work on the standard test was not so easy. Due to an error in the test system only the sequence a and the compressed sequence of the sequence c were known from that test.

Let’s give the definition to a compressed sequence. A compressed sequence of sequence c of length n is a sequence p of length n, so that pi equals to the number of integers which are less than or equal to ci in the sequence c. For example, for the sequence c = [250, 200, 300, 100, 50] the compressed sequence will be p = [4, 3, 5, 2, 1]. Pay attention that in c all integers are distinct. Consequently, the compressed sequence contains all integers from 1 to n inclusively.

Help Dasha to find any sequence b for which the calculated compressed sequence of sequence c is correct.

Input

The first line contains three integers n, l, r (1 ≤ n ≤ 105, 1 ≤ l ≤ r ≤ 109) — the length of the sequence and boundaries of the segment where the elements of sequences a and b are.

The next line contains n integers a1,  a2,  …,  an (l ≤ ai ≤ r) — the elements of the sequence a.

The next line contains n distinct integers p1,  p2,  …,  pn (1 ≤ pi ≤ n) — the compressed sequence of the sequence c.

Output

If there is no the suitable sequence b, then in the only line print “-1”.

Otherwise, in the only line print n integers — the elements of any suitable sequence b.

Examples

Input
5 1 5
1 1 1 1 1
3 1 5 4 2

Output
3 1 5 4 2

Input
4 2 9
3 4 8 9
3 2 1 4

Output
2 2 2 9

Input
6 1 5
1 1 1 1 1 1
2 3 5 4 1 6

Output
-1

Note

Sequence b which was found in the second sample is suitable, because calculated sequence c = [2 - 3, 2 - 4, 2 - 8, 9 - 9] = [ - 1,  - 2,  - 6, 0] (note that ci = bi - ai) has compressed sequence equals to p = [3, 2, 1, 4].
题意:序列bi=ci+ai,给出ai和将ci离散化后的pi,问在l,r中能否找出这样一个任意解。
题解:通过ci和pi,我们可以得到bi的最小情况,通过平移区间,将bi平移到l,r内即可。
代码:

#include <bits/stdc++.h>#define ll long longusing namespace std;const int N=1e6;const int inf =0x3f3f3f3f;ll a[N],p[N],b[N];ll n,l,r;int main(){    ll mi=inf;    ll mx=-inf;    cin>>n>>l>>r;    for(int i=1;i<=n;i++) cin>>a[i];    for(int i=1;i<=n;i++)    {        cin>>p[i];        b[i]=p[i]+a[i];        mi=min(b[i],mi);        mx=max(b[i],mx);    }    if(mx-mi>r-l)    {        cout<<"-1"<<endl;    }    else    {        ll x;        if(mi<l)            x=l-mi;        else            x=r-mx;        for(int i=1;i<=n;i++)        {            printf(i==n?"%d\n":"%d ",b[i]+x);        }    }}
0 0
原创粉丝点击