Codeforces Round #550 (Div. 3) E. Median String 模拟大数运算

题目:

You are given two strings s and t, both consisting of exactly k lowercase Latin letters, s is lexicographically less than t

.

Let's consider list of all strings consisting of exactly k

lowercase Latin letters, lexicographically not less than s and not greater than t (including s and t) in lexicographical order. For example, for k=2, s="az" and 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 s

and not greater than t

.

Input

The first line of the input contains one integer k

(1≤k≤2⋅105

) — the length of strings.

The second line of the input contains one string s

consisting of exactly k

lowercase Latin letters.

The third line of the input contains one string t

consisting of exactly k

lowercase Latin letters.

It is guaranteed that s

is lexicographically less than t

.

It is guaranteed that there is an odd number of strings lexicographically not less than s

and not greater than t

.

Output

Print one string consisting exactly of k

lowercase Latin letters — the median (the middle element) of list of strings of length k lexicographically not less than s and not greater than t

.

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

思路:

求两个字符串中间的串,需要先求出差值,然后再除2,然后与第一个字符串相加。

需要将字符串转换成26进制,然后模拟大数运算。

代码如下:

#include <bits/stdc++.h>
using namespace std;
const int maxn=2*1e5+5;
int k;
char a[maxn];
char b[maxn];
int mid[maxn];
int main()
{
    memset (mid,0,sizeof(mid));
    scanf("%d",&k);
    scanf("%s",a);
    scanf("%s",b);
    for (int i=k-1;i>=0;i--)
    {
        int ta=a[i]-'a';
        int tb=b[i]-'a';
        if(tb<ta)
        {
            b[i-1]--;
            tb+=26;
        }
        int t=tb-ta;
        if(t%2)
        {
            mid[i]=t/2;
            mid[i+1]+=13;
        }
        else
        {
            mid[i]=t/2;
        }
    }
    for (int i=k-1;i>=0;i--)
    {
        int ta=a[i]-'a';
        mid[i-1]+=(ta+mid[i])/26;
        mid[i]=(ta+mid[i])%26;
    }
    for (int i=0;i<k;i++) printf("%c",mid[i]+'a');
    printf("\n");
    return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值