F - Decoding

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/int1282951082/article/details/54091048
              F - Decoding

Polycarp is mad about coding, that is why he writes Sveta encoded messages. He calls the median letter in a word the letter which is in the middle of the word. If the word’s length is even, the median letter is the left of the two middle letters. In the following examples, the median letter is highlighted: contest, info. If the word consists of single letter, then according to above definition this letter is the median letter.

Polycarp encodes each word in the following way: he writes down the median letter of the word, then deletes it and repeats the process until there are no letters left. For example, he encodes the word volga as logva.

You are given an encoding s of some word, your task is to decode it.

Input

The first line contains a positive integer n (1 ≤ n ≤ 2000) — the length of the encoded word.

The second line contains the string s of length n consisting of lowercase English letters — the encoding.

Output

Print the word that Polycarp encoded.

Example

Input
5
logva

Output
volga

Input
2
no

Output
no

Input
4
abba

Output
baba

Note

In the first example Polycarp encoded the word volga. At first, he wrote down the letter l from the position 3, after that his word looked like voga. After that Polycarp wrote down the letter o from the position 2, his word became vga. Then Polycarp wrote down the letter g which was at the second position, the word became va. Then he wrote down the letter v, then the letter a. Thus, the encoding looked like logva.

In the second example Polycarp encoded the word no. He wrote down the letter n, the word became o, and he wrote down the letter o. Thus, in this example, the word and its encoding are the same.

In the third example Polycarp encoded the word baba. At first, he wrote down the letter a, which was at the position 2, after that the word looked like bba. Then he wrote down the letter b, which was at the position 2, his word looked like ba. After that he wrote down the letter b, which was at the position 1, the word looked like a, and he wrote down that letter a. Thus, the encoding is abba.

/*
给出一种编码方式,告诉你某单词的编码结果,求原单词
观察可以看出,按编码结果字母的顺序,中间的位置开始:左边一个,右边一个,排完之后就是原单词。自己找几组数据模拟一下,很快便发现了规律,先for(i=n-2;i>=0;i-=2) 从倒数第二位开始从右到左以此减2输出,然后从左到右依次输出其余的。
*/
#include<iostream>
using namespace std;
int n,i;
char s[2005];
int main()
{
    cin >> n >> s;
    for(i=n-2;i>=0;i-=2) cout << s[i];
    for(i=(n+1)%2;i<n;i+=2) cout << s[i];
    return 0;
}

猜你喜欢

转载自blog.csdn.net/int1282951082/article/details/54091048