-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdecode_it.cpp
55 lines (50 loc) · 1.01 KB
/
decode_it.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
char ch[10000],ans[10000];
int n,len,i,l,r,j,mid;
cin>>n>>ch;
len=n;
i=0;
j=0;
len--;
if(len%2==0)//odd
{
i=len/2;
for(j=0;i<n;j+=2){
ans[i]=ch[j];
//cout<<j<<":"<<ans[j]<<"--";
++i;
}
i=(len/2)-1;
for(j=1;i>=0;j+=2){
ans[i]=ch[j];
//cout<<j<<":"<<ans[j]<<"--";
--i;
}
ans[n]='\0';
}
else//even
{
i=n/2;
for(j=1;i<n;j+=2){
ans[i]=ch[j];
//cout<<j<<":"<<ans[j]<<"--";
++i;
}
i=(n/2)-1;
for(j=0;i>=0;j+=2){
ans[i]=ch[j];
//cout<<j<<":"<<ans[j]<<"--";
--i;
}
ans[n]='\0';
}
cout<<ans;
return 0;
}