Codeforces 584 C. Marina and Vasya (Codeforces Round #324 (Div. 2))

C. Marina and Vasya
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Marina loves strings of the same length and Vasya loves when there is a third string, different from them in exactly t characters. Help Vasya find at least one such string.

More formally, you are given two strings s1s2 of length n and number t. Let's denote as f(a, b) the number of characters in which strings a and b are different. Then your task will be to find any string s3 of length n, such that f(s1, s3) = f(s2, s3) = t. If there is no such string, print  - 1.

Input

The first line contains two integers n and t (1 ≤ n ≤ 1050 ≤ t ≤ n).

The second line contains string s1 of length n, consisting of lowercase English letters.

The third line contain string s2 of length n, consisting of lowercase English letters.

Output

Print a string of length n, differing from string s1 and from s2 in exactly t characters. Your string should consist only from lowercase English letters. If such string doesn't exist, print -1.

Sample test(s)
input
3 2
abc
xyc
output
ayd
input
1 0
c
b
output
-1
解题思路:
具体解释有点麻烦。。。直接上代码吧
 
         
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <vector>
#include <queue>
#include <algorithm>
#include <set>
using namespace std;

#define MM(a) memset(a,0,sizeof(a))

typedef long long LL;
typedef unsigned long long ULL;
const int maxn = 1e5+5;
const int mod = 1000000007;
const double eps = 1e-7;

int f(char s1[],char s2[],int n,bool flag[])
{
    int sum=0;
    for(int i=0; i<n; i++)
    {
        if(s1[i]!=s2[i])
        {
            sum++;
            flag[i]=true;
        }
    }
    ///cout<<sum<<"++"<<endl;
    return sum;
}

char s1[maxn],s2[maxn],s[maxn];

int main()
{
    int n,t,sum;
    bool flag[maxn];
    memset(flag,false,sizeof(flag));
    cin>>n>>t;
    cin>>s1>>s2;
    sum=f(s1,s2,n,flag);
    s[n]='\n';
    if((1+sum)/2>t) cout<<-1<<endl;
    else if(sum>t)
    {
        int k=sum-t;
        int l;
        for(int i=0; i<n; i++)
            s[i]=s1[i];
        for(int i=0; i<n; i++)
        {
            if(flag[i]==true)
            {
                s[i]=s1[i];
                k--;
            }
            if(k<=0)
            {
                l=i;
                break;
            }
        }
        k=sum-t;
        ///cout<<l<<"++"<<k<<endl;
        for(l=l+1; l<n; l++)
        {
            if(flag[l]==true)
            {
                s[l]=s2[l];
                //cout<<s[l]<<endl;
                k--;
            }
            if(k<=0) break;
        }

        ///cout<<l<<"++"<<endl;
        for(l=l+1
                ; l<n; l++)
        {
            if(flag[l]==false)
                goto endw;

            char x,y;
            ///cout<<"kkk"<<endl;
            if(s1[l]>s2[l])
                x=s2[l],y=s1[l];
            else
                x=s1[l],y=s2[l];

            s[l]=x-1;
            if(s[l]>='a')
            {
                goto endw;
            }

            s[l]=y+1;
            if(s[l]<='z')
            {
                goto endw;
            }

            s[l]=x+1;
endw:
            ;
        }
    }
    else
    {
        for(int i=0; i<n; i++)
        {
            if(flag[i]==false)
            {
                s[i]=s1[i];
            }
            else
            {
                char x,y;
                if(s1[i]>s2[i])
                    x=s2[i],y=s1[i];
                else
                    x=s1[i],y=s2[i];

                s[i]=x-1;
                if(s[i]>='a')
                {
                    t--;
                    goto endW;
                }

                s[i]=y+1;
                if(s[i]<='z')
                {
                    t--;
                    goto endW;
                }

                s[i]=x+1;
                t--;
                if(t<=0) break;
            }
              endW:;
        }
        ///cout<<t<<"__"<<endl;
        if(t>0)
        {
            for(int i=0; i<n; i++)
            {
                if(flag[i]==false)
                {
                    s[i]=s1[i]+1;
                    if(s[i]>'z')
                        s[i]=s1[i]-1;
                    t--;
                }
                if(t<=0) break;
            }
        }
    }
    cout<<s<<endl;
    return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
电子图书资源服务系统是一款基于 Java Swing 的 C-S 应用,旨在提供电子图书资源一站式服务,可从系统提供的图书资源中直接检索资源并进行下载。.zip优质项目,资源经过严格测试可直接运行成功且功能正常的情况才上传,可轻松copy复刻,拿到资料包后可轻松复现出一样的项目。 本人系统开发经验充足,有任何使用问题欢迎随时与我联系,我会及时为你解惑,提供帮助。 【资源内容】:包含完整源码+工程文件+说明(若有),项目具体内容可查看下方的资源详情。 【附带帮助】: 若还需要相关开发工具、学习资料等,我会提供帮助,提供资料,鼓励学习进步。 【本人专注计算机领域】: 有任何使用问题欢迎随时与我联系,我会及时解答,第一时间为你提供帮助,CSDN博客端可私信,为你解惑,欢迎交流。 【适合场景】: 相关项目设计中,皆可应用在项目开发、毕业设计、课程设计、期末/期中/大作业、工程实训、大创等学科竞赛比赛、初期项目立项、学习/练手等方面中 可借鉴此优质项目实现复刻,也可以基于此项目进行扩展来开发出更多功能 【无积分此资源可联系获取】 # 注意 1. 本资源仅用于开源学习和技术交流。不可商用等,一切后果由使用者承担。 2. 部分字体以及插图等来自网络,若是侵权请联系删除。积分/付费仅作为资源整理辛苦费用。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值