Hide

Problem A
Dvoniz

We say that a sequence of 2K elements is interesting if neither the sum of the first K elements, nor the sum of the last K elements, is greater than S. A sequence A of length N is given. For every element, output the length of the longest interesting subsequence starting with that element.

Input

The first line contains integers N and S (2N100000, 1S2109 ).

The following N lines contain the sequence A, one integer per line. The integers are non-negative and their sum does not exceed 2109.

Output

Output N lines. The i-th line must contain one integer, the length of the longest interesting subsequence starting with the i-th element. If an interesting subsequence at that position doesn’t exist, output 0 (zero).

Sample Input 1 Sample Output 1
5 10000
1
1
1
1
1
4
4
2
2
0
Sample Input 2 Sample Output 2
5 9
1
1
10
1
9
2
0
0
2
0
Sample Input 3 Sample Output 3
8 3
1
1
1
1
1
1
1
1
6
6
6
4
4
2
2
0
Hide

Please log in to submit a solution to this problem

Log in