CF1798E.Multitest Generator

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Let's call an array b1,b2,,bmb_1, b_2, \ldots, b_m a test if b1=m1b_1 = m - 1 .

Let's call an array b1,b2,,bmb_1, b_2, \ldots, b_m a multitest if the array b2,b3,,bmb_2, b_3, \ldots, b_m can be split into b1b_1 non-empty subarrays so that each of these subarrays is a test. Note that each element of the array must be included in exactly one subarray, and the subarrays must consist of consecutive elements.

Let's define the function ff from the array b1,b2,,bmb_1, b_2, \ldots, b_m as the minimum number of operations of the form "Replace any bib_i with any non-negative integer xx ", which needs to be done so that the array b1,b2,,bmb_1, b_2, \ldots, b_m becomes a multitest.

You are given an array of positive integers a1,a2,,ana_1, a_2, \ldots, a_n . For each ii from 11 to n1n - 1 , find f([ai,ai+1,,an])f([a_i, a_{i+1}, \ldots, a_n]) .

Below are some examples of tests and multitests.

  • Tests: [1,5][\underline{1}, 5] , [2,2,2][\underline{2}, 2, 2] , [3,4,1,1][\underline{3}, 4, 1, 1] , [5,0,0,0,0,0][\underline{5}, 0, 0, 0, 0, 0] , [7,1,2,3,4,5,6,7][\underline{7}, 1, 2, 3, 4, 5, 6, 7] , [0][\underline{0}] . These arrays are tests since their first element (underlined) is equal to the length of the array minus one.
  • Multitests: [1,1,1][1, \underline{\underline{1}, 1}] , [2,3,0,0,1,1,12][2, \underline{\underline{3}, 0, 0, 1}, \underline{\underline{1}, 12}] , [3,2,2,7,1,1,3,4,4,4][3, \underline{\underline{2}, 2, 7}, \underline{\underline{1}, 1}, \underline{\underline{3}, 4, 4, 4}] , [4,0,3,1,7,9,4,2,0,0,9,1,777][4, \underline{\underline{0}}, \underline{\underline{3}, 1, 7, 9}, \underline{\underline{4}, 2, 0, 0, 9}, \underline{\underline{1}, 777}] . Underlined are the subarrays after the split, and double underlined are the first elements of each subarray.

输入格式

Each test contains multiple test cases. The first line contains the number of test cases tt ( 1t3000001 \le t \le 300\,000 ). The description of the test cases follows.

The first line of each test case contains a single integer nn ( 2n3000002 \le n \le 300\,000 ) — the length of the array aa .

The second line of each test case contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 1ai3000001 \le a_i \le 300\,000 ) — elements of the array aa .

It is guaranteed that the sum of nn over all test cases does not exceed 300000300\,000 .

输出格式

For each test case print n1n - 1 numbers — f([ai,ai+1,,an])f([a_i, a_{i+1}, \ldots, a_n]) for each ii from 11 to n1n - 1 .

输入输出样例

  • 输入#1

    3
    4
    1 2 1 7
    7
    3 1 3 1 2 1 1
    4
    2 7 1 1

    输出#1

    0 1 1 
    0 1 1 0 1 1 
    1 1 1
  • 输入#2

    1
    19
    3 4 1 2 1 7 7 3 1 3 1 2 1 1 4 2 7 1 1

    输出#2

    0 0 1 1 1 1 1 1 1 0 1 0 1 0 2 1 1 1

说明/提示

In the first test case of the first test the array [1,2,1,7][1, 2, 1, 7] is a multitest since the array [2,1,7][2, 1, 7] is a test. The array [2,1,7][2, 1, 7] is not a multitest, but after replacing the first number with 11 , an array [1,1,7][1, 1, 7] is obtained, which is a multitest. The array [1,7][1, 7] is also not a multitest, but the array [1,0][1, 0] is, so f([1,7])=1f([1, 7]) = 1 .

In the second test case of first test, for i=2i = 2 , f([ai,ai+1,,an])=f([1,3,1,2,1,1])=1f([a_i, a_{i+1}, \ldots, a_n]) = f([1, 3, 1, 2, 1, 1]) = 1 , since the array itself is not a multitest, but after replacing the second element with 44 you get multitest.

In the third test case of first test, for i=1i = 1 , f([ai,ai+1,,an])=f([2,7,1,1])=1f([a_i, a_{i+1}, \ldots, a_n]) = f([2, 7, 1, 1]) = 1 , since the array itself is not a multitest, but after replacing the second element with 00 you get multitest.

The second test is an array composed of all the numbers of the first test. Therefore f([a1,a2,,an])f([a_1, a_2, \ldots, a_n]) naturally equals to 00 .

首页