CF584C.Marina and Vasya

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

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

More formally, you are given two strings s1s_{1} , s2s_{2} of length nn and number tt . Let's denote as f(a,b)f(a,b) the number of characters in which strings aa and bb are different. Then your task will be to find any string s3s_{3} of length nn , such that f(s1,s3)=f(s2,s3)=tf(s_{1},s_{3})=f(s_{2},s_{3})=t . If there is no such string, print 1-1 .

输入格式

The first line contains two integers nn and tt ( 1<=n<=1051<=n<=10^{5} , 0<=t<=n0<=t<=n ).

The second line contains string s1s_{1} of length nn , consisting of lowercase English letters.

The third line contain string s2s_{2} of length nn , consisting of lowercase English letters.

输出格式

Print a string of length nn , differing from string s1s_{1} and from s2s_{2} in exactly tt characters. Your string should consist only from lowercase English letters. If such string doesn't exist, print -1.

输入输出样例

  • 输入#1

    3 2
    abc
    xyc
    

    输出#1

    ayd
  • 输入#2

    1 0
    c
    b
    

    输出#2

    -1
    
首页