CF1847B.Hamon Odyssey

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Jonathan is fighting against DIO's Vampire minions. There are nn of them with strengths a1,a2,,ana_1, a_2, \dots, a_n . \def\and {{\,\texttt{&}\,}}

Denote (l,r)(l, r) as the group consisting of the vampires with indices from ll to rr . Jonathan realizes that the strength of any such group is in its weakest link, that is, the bitwise AND. More formally, the strength level of the group (l,r)(l, r) is defined as $$$$f(l,r) = a_l \and a_{l+1} \and a_{l+2} \and \ldots \and a_r. $$ Here, and\\and denotes the bitwise AND operation.

Because Jonathan would like to defeat the vampire minions fast, he will divide the vampires into contiguous groups, such that each vampire is in exactly one group, and the sum of strengths of the groups is minimized. Among all ways to divide the vampires, he would like to find the way with the maximum number of groups.

Given the strengths of each of the nn$$ vampires, find the maximum number of groups among all possible ways to divide the vampires with the smallest sum of strengths.

输入格式

The first line contains a single integer tt (1t104)(1 \leq t \leq 10^4) — the number of test cases. The description of test cases follows.

The first line of each test case contains a single integer nn ( 1n21051 \leq n \leq 2 \cdot 10^5 ) — the number of vampires.

The second line of each test case contains nn integers a1,a2,,ana_1,a_2,\ldots,a_n ( 0ai1090 \leq a_i \leq 10^9 ) — the individual strength of each vampire.

The sum of nn over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case, output a single integer — the maximum number of groups among all possible ways to divide the vampires with the smallest sum of strengths.

输入输出样例

  • 输入#1

    3
    3
    1 2 3
    5
    2 3 1 5 2
    4
    5 7 12 6

    输出#1

    1
    2
    1

说明/提示

In the first test case, the optimal way is to take all the nn vampires as a group. So, f(1,3) = 1 \and 2 \and 3 = 0 .

In the second test case, the optimal way is to make 22 groups, (2,3,1)(2,3,1) and (5,2)(5,2) . So, f(1,3) + f(4,5) = (2 \and 3 \and 1) + (5 \and 2) = 0 + 0 = 0 .

首页