Codeforces 764B-Timofey and cubes

来源:互联网 发布:pink cat动作数据下载 编辑:程序博客网 时间:2024/05/24 03:40

Timofey and cubes
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Young Timofey has a birthday today! He got kit of n cubes as a birthday present from his parents. Every cube has a number ai, which is written on it. Timofey put all the cubes in a row and went to unpack other presents.

In this time, Timofey's elder brother, Dima reordered the cubes using the following rule. Suppose the cubes are numbered from 1 to n in their order. Dima performs several steps, on step i he reverses the segment of cubes from i-th to (n - i + 1)-th. He does this while i ≤ n - i + 1.

After performing the operations Dima went away, being very proud of himself. When Timofey returned to his cubes, he understood that their order was changed. Help Timofey as fast as you can and save the holiday — restore the initial order of the cubes using information of their current location.

Input

The first line contains single integer n (1 ≤ n ≤ 2·105) — the number of cubes.

The second line contains n integers a1, a2, ..., an ( - 109 ≤ ai ≤ 109), where ai is the number written on the i-th cube after Dima has changed their order.

Output

Print n integers, separated by spaces — the numbers written on the cubes in their initial order.

It can be shown that the answer is unique.

Examples
input
74 3 7 6 9 1 2
output
2 3 9 6 7 1 4
input
86 1 4 2 5 6 9 2
output
2 1 6 2 5 4 9 6

Note

Consider the first sample.

  1. At the begining row was [2396714].
  2. After first operation row was [4176932].
  3. After second operation row was [4396712].
  4. After third operation row was [4376912].
  5. At fourth operation we reverse just middle element, so nothing has changed. The final row is [4376912]. So the answer for this case is row [2396714].

题意:对于给定n的序列。开始交换,每次交换从两端交换

解题思路:对于位置在奇数位的会交换,而偶数位的不会


#include <iostream>#include <cstdio>#include <string>#include <cstring>#include <algorithm>#include <cmath>#include <queue>#include <vector>#include <set>#include <stack>#include <map>#include <climits>using namespace std;#define LL long longconst int INF=0x3f3f3f3f;int a[200009];int main(){    int n;    while(~scanf("%d",&n))    {        for(int i=1;i<=n;i++)            scanf("%d",&a[i]);        int k=n/2;        for(int i=1;i<=k;i++)            if(i&1) swap(a[i],a[n-i+1]);        printf("%d",a[1]);        for(int i=2;i<=n;i++)            printf(" %d",a[i]);        printf("\n");    }    return 0;}

0 0
原创粉丝点击