Codeforces Round #394 (Div. 2)D. Dasha and Very Difficult Problem【贪心】

本文介绍了一道复杂问题的解决思路,重点在于如何通过贪心算法找到符合条件的序列b,通过对输入序列p和a的处理,确保输出序列满足特定条件。

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].


题目大意:

给你序列p和序列a,让你找一个合法的序列b,输出。

序列c是通过bi-ai来得到的。

序列p是通过离散化序列c来得到的。


思路:


1、既然序列p是通过序列c离散化得到的,那么其反应的就是一个从小到大的一个特征。那么首先我们按照p从小到大排序。


2、考虑ci=bi-ai.此时已知ai,求的是bi,那么bi=ci+ai;而ci是一个不定数组,其值只有大小顺序,而无固定值,那么我们要求的bi,只要合法,就是可行序列。

那么接下来我们贪心这个bi:

①设定p==1的位子上,bi=l,ci=l-ai;

②紧接着,设定p==2的位子上,尽可能的希望ci大于p==1的位子上的ci,并且p==2的位子上的ci尽可能的接近p==1的位子上的ci.

③依次类推,对于放置bi==r都不能满足ci>ci-1的情况下,那么就是-1的情况。

过程可能说的过于简单,具体参考代码(T T词穷了,不造咋说清楚些了)



Ac代码:

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
struct node
{
    int pos;
    int num,val;
}a[100500];
int b[100500];
int ans[100500];
int c[100500];
int cmp(node a,node b)
{
    return a.val<b.val;
}
int main()
{
    int n,l,r;
    while(~scanf("%d%d%d",&n,&l,&r))
    {
        for(int i=1;i<=n;i++)
        {
            scanf("%d",&a[i].num);
            a[i].pos=i;
        }
        for(int i=1;i<=n;i++)
        {
            scanf("%d",&a[i].val);
        }
        int flag=0;
        sort(a+1,a+1+n,cmp);
        for(int i=1;i<=n;i++)
        {
            if(i==1)
            b[i]=l,c[i]=b[i]-a[i].num;
            else
            {
                if(r-a[i].num>c[i-1])
                {
                    b[i]=(c[i-1]+1+a[i].num);
                    if(b[i]<l)b[i]=l;
                    if(b[i]>r)flag=1;
                    c[i]=b[i]-a[i].num;
                }
                else flag=1;
            }
            ans[a[i].pos]=b[i];
        }
        if(flag==1)printf("-1\n");
        else
        {
            for(int i=1;i<=n;i++)
            {
                printf("%d ",ans[i]);
            }
            printf("\n");
        }
    }
}





【完美复现】面向配电网韧性提升的移动储能预布局与动态调度策略【IEEE33节点】(Matlab代码实现)内容概要:本文介绍了基于IEEE33节点的配电网韧性提升方法,重点研究了移动储能系统的预布局与动态调度策略。通过Matlab代码实现,提出了一种结合预配置和动态调度的两阶段优化模型,旨在应对电网故障或极端事件时快速恢复供电能力。文中采用了多种智能优化算法(如PSO、MPSO、TACPSO、SOA、GA等)进行对比分析,验证所提策略的有效性和优越性。研究不仅关注移动储能单元的初始部署位置,还深入探讨其在故障发生后的动态路径规划与电力支援过程,从而全面提升配电网的韧性水平。; 适合人群:具备电力系统基础知识和Matlab编程能力的研究生、科研人员及从事智能电网、能源系统优化等相关领域的工程技术人员。; 使用场景及目标:①用于科研复现,特别是IEEE顶刊或SCI一区论文中关于配电网韧性、应急电源调度的研究;②支撑电力系统在灾害或故障条件下的恢复力优化设计,提升实际电网应对突发事件的能力;③为移动储能系统在智能配电网中的应用提供理论依据和技术支持。; 阅读建议:建议读者结合提供的Matlab代码逐模块分析,重点关注目标函数建模、约束条件设置以及智能算法的实现细节。同时推荐参考文中提及的MPS预配置与动态调度上下两部分,系统掌握完整的技术路线,并可通过替换不同算法或测试系统进一步拓展研究。
先看效果: https://pan.quark.cn/s/3756295eddc9 在C#软件开发过程中,DateTimePicker组件被视为一种常见且关键的构成部分,它为用户提供了图形化的途径来选取日期与时间。 此类控件多应用于需要用户输入日期或时间数据的场景,例如日程管理、订单管理或时间记录等情境。 针对这一主题,我们将细致研究DateTimePicker的操作方法、具备的功能以及相关的C#编程理念。 DateTimePicker控件是由.NET Framework所支持的一种界面组件,适用于在Windows Forms应用程序中部署。 在构建阶段,程序员能够通过调整属性来设定其视觉形态及运作模式,诸如设定日期的显示格式、是否展现时间选项、预设的初始值等。 在执行阶段,用户能够通过点击日历图标的下拉列表来选定日期,或是在文本区域直接键入日期信息,随后按下Tab键或回车键以确认所选定的内容。 在C#语言中,DateTime结构是处理日期与时间数据的核心,而DateTimePicker控件的值则表现为DateTime类型的实例。 用户能够借助`Value`属性来读取或设定用户所选择的日期与时间。 例如,以下代码片段展示了如何为DateTimePicker设定初始的日期值:```csharpDateTimePicker dateTimePicker = new DateTimePicker();dateTimePicker.Value = DateTime.Now;```再者,DateTimePicker控件还内置了事件响应机制,比如`ValueChanged`事件,当用户修改日期或时间时会自动激活。 开发者可以注册该事件以执行特定的功能,例如进行输入验证或更新关联的数据:``...
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值