题库练习 Scoring Subsequences
← 上一题 下一题 →

A15686 | Scoring Subsequences

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

题目描述

The score of a sequence $[s_1, s_2, \ldots, s_d]$ is defined as $\displaystyle \frac{s_1\cdot s_2\cdot \ldots \cdot s_d}{d!}$ , where $d!=1\cdot 2\cdot \ldots \cdot d$ . In particular, the score of an empty sequence is $1$ .

For a sequence $[s_1, s_2, \ldots, s_d]$ , let $m$ be the maximum score among all its subsequences. Its cost is defined as the maximum length of a subsequence with a score of $m$ .

You are given a non-decreasing sequence $[a_1, a_2, \ldots, a_n]$ of integers of length $n$ . In other words, the condition $a_1 \leq a_2 \leq \ldots \leq a_n$ is satisfied. For each $k=1, 2, \ldots , n$ , find the cost of the sequence $[a_1, a_2, \ldots , a_k]$ .

A sequence $x$ is a subsequence of a sequence $y$ if $x$ can be obtained from $y$ by deletion of several (possibly, zero or all) elements.

输入格式

Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 10^4$ ). The description of the test cases follows.

The first line of each test case contains an integer $n$ ( $1\le n\le 10^5$ ) — the length of the given sequence.

The second line of each test case contains $n$ integers $a_1,a_2,\ldots,a_n$ ( $1\le a_i\leq n$ ) — the given sequence. It is guaranteed that its elements are in non-decreasing order.

It is guaranteed that the sum of $n$ over all test cases does not exceed $5\cdot 10^5$ .

输出格式

For each test case, output $n$ integers — the costs of sequences $[a_1, a_2, \ldots , a_k]$ in ascending order of $k$ .

输入输出样例

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