Description

An array of integers p1,p2,…,pnp1,p2,…,pn is called a permutation if it contains each number from 11 to nn exactly once. For example, the following arrays are permutations: [3,1,2][3,1,2] , [1][1] , [1,2,3,4,5][1,2,3,4,5] and [4,3,1,2][4,3,1,2] . The following arrays are not permutations: [2][2] , [1,1][1,1] , [2,3,4][2,3,4] .

Polycarp invented a really cool permutation p1,p2,…,pnp1,p2,…,pn of length nn . It is very disappointing, but he forgot this permutation. He only remembers the array q1,q2,…,qn−1q1,q2,…,qn−1 of length n−1n−1 , where qi=pi+1−piqi=pi+1−pi .

Given nn and q=q1,q2,…,qn−1q=q1,q2,…,qn−1 , help Polycarp restore the invented permutation.

Input

The first line contains the integer nn (2≤n≤2⋅1052≤n≤2⋅105 ) — the length of the permutation to restore. The second line contains n−1n−1 integers q1,q2,…,qn−1q1,q2,…,qn−1 (−n<qi<n−n<qi<n ).

Output

Print the integer -1 if there is no such permutation of length nn which corresponds to the given array qq . Otherwise, if it exists, print p1,p2,…,pnp1,p2,…,pn . Print any such permutation if there are many of them.

Examples

Input

3 -2 1

Output

3 1 2

Input

5 1 1 1 1

Output

1 2 3 4 5

Input

4 -1 2 2

Output

-1

题目分析

给你一个数组的相邻两项之间的差值,要求还原这个数组,而且这个数组中的元素的取值范围在[1,n],并且每一个数只出现一次,并且1-n的每一个数都要出现.

想到这里,觉得这个题也不难呀,二分枚举第一个数然后根据前后的差值不断的向后递推就好了,不过注意判重。

如果第一个数太大了,那么必然会出现数组中的某一个数越界,那么就继续二分左区间,否则就二分右区间。

而在某一个数作为第一个数的时候出现了某一个数重复出现的情况,则说明这个数组无法还原.

代码区

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include <vector>
using namespace std;
typedef long long ll;
const int inf = 0x3f3f3f3f;
const int Max = 5e5 + 5; int v[Max];
; int main()
{
int n;
while (scanf("%d", &n) != EOF)
{
for (int i = 1; i < n; i++)
{
scanf("%d", v + i);
}
int l, r;
if (v[1] > 0)l = 1, r = n - v[0]; //若前两个数的差为正数,那么第一个数的小于n-v[0],因为第二个数不可以超过n
else l = 1 - v[0], r = n; //若前两个数的差为负数,那么第一个数一定要大于1+v[0]
vector<int>q; //存数据
bool vis[Max]; //vis[i]记录数字i是否出现 int flag = false, gg = false; //flag == true代表成功,gg = true代表失败
while (l <= r) //二分
{
int mid = (l + r) / 2;
memset(vis, false, sizeof(vis));
vis[mid] = true; //表示mid出现
q.push_back(mid); int next; //记录序列下一个数
for (int i = 1; i < n;i++)
{
next = q.back() + v[i]; //记录下一个数
if (1 <= next && next <= n && !vis[next])//当前数不重复,且在范围[1,n]内
{
q.push_back(next);
vis[next] = true;
if (q.size() == n) flag = true;
}
else
{
if (1 <= next && next <= n && vis[next])gg = true; //出现重复,代表这个序列不可能成了
break;
}
}
if (gg || flag) break; //到达目的或者无法实现
q.clear(); //当前作为一个数的数失败,则继续二分
if (next > n)r = mid - 1; //第一个数太小导致越界
else l = mid + 1; //第一个数太大导致越界
}
if (gg)
{
printf("-1\n");
}
else
{
if(flag)
{
for (int i = 0;i < n - 1; i++)
{
printf("%d ", q[i]);
}
printf("%d\n", q[n - 1]);
}
else
{
printf("-1\n");
}
}
}
return 0;
}

最新文章

  1. Programming Assignment 2: Randomized Queues and Deques
  2. Duilib技巧:背景图片平铺
  3. 逻辑运算符——逻辑与&amp;&amp;、逻辑或||
  4. 【面试虐菜】—— LVS负载均衡
  5. Struts2从版本2.2.1升级至2.3.15.1出现的问题
  6. PHP学习之开发工具
  7. 第23章 COM和ActiveX(COM可以实现跨进程跨机器的函数调用)
  8. OC基础 类的三大特性
  9. DP CF 319 div1B
  10. .Net Core2.0 + Nginx + CentOS 部署
  11. MongoDB的mongos实例因无法分配mlock内存挂掉
  12. MacOS下使用远程桌面VNC
  13. Bigger-Mai 养成计划,Python基础巩固四
  14. 迁移32位下的旧代码到64位sever遇到过的两个很诡异的问题
  15. 查看windows到期时间
  16. Nginx实现负载均衡的几种方式
  17. 约束布局constraint-layout导入失败的解决方案 - 转
  18. Windows系统下搭建Appium自动化测试框架
  19. 精《Linux内核精髓:精通Linux内核必会的75个绝技》一HACK #7 Cgroup、Namespace、Linux容器
  20. Learn to See in the Dark(论文阅读笔记)

热门文章

  1. jquery die()方法 语法
  2. Socket 对象(内建)方法
  3. Js文件函数中调用另一个Js文件函数的方法
  4. Java多线程和并发(五),线程的状态
  5. STS热部署方法(springboot)
  6. MySQL中的exist与not exists
  7. 191121HTML
  8. legend3---laravel中获取控制器名称和方法名称
  9. Python_序列对象内置方法详解_String
  10. VueLoaderPlugin作用