Codeforces-1144E-Median String-(高精度计算)

原题链接:http://codeforces.com/contest/1144/problem/E

题目原文:

E. Median String

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

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

 

题目大意:

        给两个字符串s和t,s的字典序小于t,求字典序大于等于s小于等于t 的字符串的中间一个。保证字符串集合为奇数个。

解题思路 :

        把其当成26进制的大数运算,ans = (s + t) / 2.

AC代码:

#include <cstdio>
#include <cstring>
using namespace std;

const int N = int(2e5 + 5);
const int RADIX = 26; // 基数

int g_s[N];
int g_t[N];
int g_len;

void init()
{
    memset(g_s, 0, sizeof(g_s));
    memset(g_t, 0, sizeof(g_t));
}

void add()
{
    int i, t, c = 0;
    for (i = g_len; i >= 1; i--)
    {
        t = g_s[i] + g_t[i] + c;
        g_s[i] = t % RADIX;
        c = t / RADIX;
    }
    g_s[0] = c;
}

void divide2()
{
    int d = 2;
    int i, t, r = 0;
    for (i = 0; i <= g_len; i++)
    {
        t = g_s[i] + r * RADIX;
        g_s[i] = t / d;
        r = t % d;
    }
    // 由题意知总能除尽
}

int main()
{
    int i;
    char c;
    while (scanf("%d", &g_len) != EOF)
    {
        init();
        for (i = 1; i <= g_len; i++)
        {
            scanf(" %1c", &c);
            g_s[i] = c - 'a';
        }
        for (i = 1; i <= g_len; i++)
        {
            scanf(" %1c", &c);
            g_t[i] = c - 'a';
        }
        add();
        divide2();
        for (i = 1; i <= g_len; i++)
        {
            printf("%1c", g_s[i] + 'a');
        }
        printf("\n");
    }
    return 0;
}

 

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值