CodeForces 746B Decoding

来源:互联网 发布:jsonp跨域原理 java 编辑:程序博客网 时间:2024/06/05 08:08

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: contestinfo. 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
5logva
Output
volga
Input
2no
Output
no
Input
4abba
Output
baba

Time limit : 1000MS

Memory limit : 262144KB

字符串模拟

#include<stdio.h>#include<string.h>int main(){    int n;    char a[2005];    char b[2005];    while(scanf("%d",&n)!=EOF)    {        scanf("%s",a);        int l = strlen(a);        if(n%2==1)        {            for(int i=0,j=-1; i<l; i++)            {                if(i%2==0)                    b[(n+i-1)/2] = a[i];                else                {                    j=j-2;                    b[(n+j)/2] = a[i];                }            }            for(int i=0; i<l; i++)                printf("%c",b[i]);            printf("\n");        }        else if(n%2==0)        {            for(int i=0,j=-1; i<l; i++)            {                if(i%2==0)                {                    b[(n+j)/2] = a[i];                    j-=2;                }                else if(i%2==1)                {                    b[(n+i)/2] = a[i];                }            }            for(int i=0; i<l; i++)                printf("%c",b[i]);            printf("\n");        }    }    return 0;}

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.


原创粉丝点击