测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A9990. Marina and Vasya

编程题 普及/提高-

题目描述

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 $s_{1}$ , $s_{2}$ 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 $s_{3}$ of length $n$ , such that $f(s_{1},s_{3})=f(s_{2},s_{3})=t$ . If there is no such string, print $-1$ .

输入格式

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

The second line contains string $s_{1}$ of length $n$ , consisting of lowercase English letters.

The third line contain string $s_{2}$ of length $n$ , consisting of lowercase English letters.

输出格式

Print a string of length $n$ , differing from string $s_{1}$ and from $s_{2}$ in exactly $t$ 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
上一题 去做题 下一题