博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #395 (Div. 2)B. Timofey and cubes
阅读量:4988 次
发布时间:2019-06-12

本文共 2443 字,大约阅读时间需要 8 分钟。

地址:

题目:

B. 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
7 4 3 7 6 9 1 2
output
2 3 9 6 7 1 4
input
8 6 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 [2, 3, 9, 6, 7, 1, 4].
  2. After first operation row was [4, 1, 7, 6, 9, 3, 2].
  3. After second operation row was [4, 3, 9, 6, 7, 1, 2].
  4. After third operation row was [4, 3, 7, 6, 9, 1, 2].
  5. At fourth operation we reverse just middle element, so nothing has changed. The final row is [4, 3, 7, 6, 9, 1, 2]. So the answer for this case is row [2, 3, 9, 6, 7, 1, 4].

 思路:水题,看代码即可

代码

1 #include 
2 3 using namespace std; 4 5 #define MP make_pair 6 #define PB push_back 7 typedef long long LL; 8 typedef pair
PII; 9 const double eps=1e-8;10 const double pi=acos(-1.0);11 const int K=1e6+7;12 const int mod=1e9+7;13 14 int n,a[K];15 int main(void)16 {17 cin>>n;18 for(int i=1;i<=n;i++)cin>>a[i];19 for(int i=1;i<=n-i+1;i++)20 if(i&1)21 swap(a[i],a[n-i+1]);22 for(int i=1;i<=n;i++)23 printf("%d ",a[i]);24 25 return 0;26 }

 

转载于:https://www.cnblogs.com/weeping/p/6362465.html

你可能感兴趣的文章
python IsWindowEnabled遍历windows的所有窗口并输出窗口标题
查看>>
java面向对象三大特性:封装、继承、多态
查看>>
Oracle sql优化
查看>>
sweetalert 快速显示两个提示, 第二个显示不出的问题
查看>>
Redis 键(key)
查看>>
granger Z-score问题
查看>>
mybatis系列-07-输出映射
查看>>
将本地项目和远程git仓库相连接
查看>>
cocos3.12预编译android报错RuntimeJsImpl.cpp
查看>>
未解决的题-幂函数的奇偶性
查看>>
wc移植sae笔记
查看>>
<welcome-file-list>标签作用,怎样使用
查看>>
栈和队列
查看>>
db2 数据库配置HADR+TSA添加集群节点
查看>>
event Flow
查看>>
[Linux]Ubuntu设置时区和更新时间
查看>>
Caesars Cipher(算法)
查看>>
Codeforces Round #311 (Div. 2) E. Ann and Half-Palindrome 字典树/半回文串
查看>>
Codeforces Round #115 B. Plane of Tanks: Pro 水题
查看>>
BZOJ 2648: SJY摆棋子 kdtree
查看>>