题库练习 Mister B and Astronomers
← 上一题 下一题 →

A11005 | Mister B and Astronomers

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

After studying the beacons Mister B decided to visit alien's planet, because he learned that they live in a system of flickering star Moon. Moreover, Mister B learned that the star shines once in exactly $T$ seconds. The problem is that the star is yet to be discovered by scientists.

There are $n$ astronomers numerated from $1$ to $n$ trying to detect the star. They try to detect the star by sending requests to record the sky for $1$ second.

The astronomers send requests in cycle: the $i$ -th astronomer sends a request exactly $a_{i}$ second after the $(i-1)$ -th (i.e. if the previous request was sent at moment $t$ , then the next request is sent at moment $t+a_{i}$ ); the $1$ -st astronomer sends requests $a_{1}$ seconds later than the $n$ -th. The first astronomer sends his first request at moment $0$ .

Mister B doesn't know the first moment the star is going to shine, but it's obvious that all moments at which the star will shine are determined by the time of its shine moment in the interval $[0,T)$ . Moreover, this interval can be split into $T$ parts of $1$ second length each of form $[t,t+1)$ , where $t=0,1,2,...,(T-1)$ .

Mister B wants to know how lucky each astronomer can be in discovering the star first.

For each astronomer compute how many segments of form $[t,t+1)$ ( $t=0,1,2,...,(T-1)$ ) there are in the interval $[0,T)$ so that this astronomer is the first to discover the star if the first shine of the star happens in this time interval.

输入格式

The first line contains two integers $T$ and $n$ ( $1<=T<=10^{9}$ , $2<=n<=2·10^{5}$ ).

The second line contains $n$ integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=10^{9}$ ).

输出格式

Print $n$ integers: for each astronomer print the number of time segments describer earlier.

输入输出样例

输入 #1
4 2
2 3
输出 #1
3 1 
输入 #2
5 4
1 1 1 1
输出 #2
2 1 1 1 
C++ 编辑器
输入
输出