E. Median String

26 篇文章 0 订阅
5 篇文章 0 订阅

You are given two strings ss and tt, both consisting of exactly kk lowercase Latin letters, ss is lexicographically less than tt.

Let's consider list of all strings consisting of exactly kk lowercase Latin letters, lexicographically not less than ss and not greater than tt(including ss and tt) in lexicographical order. For example, for k=2k=2, s=s="az" and t=t="bf" the list will be ["az", "ba", "bb", "bc", "bd", "be", "bf"].

Your task is to print the median (the middle element) of this list. For the example above this will be "bc".

It is guaranteed that there is an odd number of strings lexicographically not less than ss and not greater than tt.

Input

The first line of the input contains one integer kk (1≤k≤2⋅1051≤k≤2⋅105) — the length of strings.

The second line of the input contains one string ss consisting of exactly kk lowercase Latin letters.

The third line of the input contains one string tt consisting of exactly kk lowercase Latin letters.

It is guaranteed that ss is lexicographically less than tt.

It is guaranteed that there is an odd number of strings lexicographically not less than ss and not greater than tt.

Output

Print one string consisting exactly of kk lowercase Latin letters — the median (the middle element) of list of strings of length kklexicographically not less than ss and not greater than tt.

Examples

input

Copy

2
az
bf

output

Copy

bc

input

Copy

5
afogk
asdji

output

Copy

alvuw

input

Copy

6
nijfvj
tvqhwp

output

Copy

qoztvz

题意:给你两个长度为n的字符串然后求位于它两中间的字符串

思路:把字母转换成26进制情况然后模拟加法,和除法(准确的说是除二)。

代码:

#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#define LL long long 

using namespace std;
const int maxn=2e5+100;

char s[maxn],t[maxn];
int a[maxn],b[maxn];
int ans[maxn];
int main()
{
	int n;
	scanf("%d",&n);
	scanf("%s%s",s+1,t+1);
	
	for(int i=1;i<=n;i++)
	{
		a[i]=s[i]-'a';
		b[i]=t[i]-'a';
	}
	
	for(int i=n;i>=1;i--)
	{
		//cout<<a[i]<<" "<<b[i]<<endl;
		a[i]+=b[i];
		if(a[i]>=26)
		{
			a[i-1]+=a[i]/26;
			a[i]%=26;
		}
		//cout<<a[i]<<" ";
	}
	//cout<<a[0];
	for(int i=0;i<=n;i++)
	{
		ans[i]=a[i]/2;
		//cout<<ans[i]<<" "<<a[i]<<endl;
		int mod=a[i]%2;
		a[i+1]+=mod*26;
	}
	for(int i=1;i<=n;i++)
	{
		printf("%c",ans[i]+'a');
	}
	printf("\n");
	return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 4
    评论
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值