CF1093C.Mishka and the Last Exam

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Mishka is trying really hard to avoid being kicked out of the university. In particular, he was doing absolutely nothing for the whole semester, miraculously passed some exams so that just one is left.

There were nn classes of that subject during the semester and on ii -th class professor mentioned some non-negative integer aia_i to the students. It turned out, the exam was to tell the whole sequence back to the professor.

Sounds easy enough for those who attended every class, doesn't it?

Obviously Mishka didn't attend any classes. However, professor left some clues on the values of aa to help out students like Mishka:

  • aa was sorted in non-decreasing order ( a1a2ana_1 \le a_2 \le \dots \le a_n );
  • nn was even;
  • the following sequence bb , consisting of n2\frac n 2 elements, was formed and given out to students: bi=ai+ani+1b_i = a_i + a_{n - i + 1} .

Professor also mentioned that any sequence aa , which produces sequence bb with the presented technique, will be acceptable.

Help Mishka to pass that last exam. Restore any sorted sequence aa of non-negative integers, which produces sequence bb with the presented technique. It is guaranteed that there exists at least one correct sequence aa , which produces the given sequence bb .

输入格式

The first line contains a single integer nn ( 2n21052 \le n \le 2 \cdot 10^5 ) — the length of sequence aa . nn is always even.

The second line contains n2\frac n 2 integers b1,b2,,bn2b_1, b_2, \dots, b_{\frac n 2} ( 0bi10180 \le b_i \le 10^{18} ) — sequence bb , where bi=ai+ani+1b_i = a_i + a_{n - i + 1} .

It is guaranteed that there exists at least one correct sequence aa , which produces the given sequence bb .

输出格式

Print nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 0ai10180 \le a_i \le 10^{18} ) in a single line.

a1a2ana_1 \le a_2 \le \dots \le a_n should be satisfied.

bi=ai+ani+1b_i = a_i + a_{n - i + 1} should be satisfied for all valid ii .

输入输出样例

  • 输入#1

    4
    5 6
    

    输出#1

    2 3 3 3
    
  • 输入#2

    6
    2 1 2
    

    输出#2

    0 0 1 1 1 2 
    
首页