A13107 | Make Them Odd
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ positive integers $a_1, a_2, \dots, a_n$ . For the one move you can choose any even value $c$ and divide by two all elements that equal $c$ .
For example, if $a=[6,8,12,6,3,12]$ and you choose $c=6$ , and $a$ is transformed into $a=[3,8,12,3,3,12]$ after the move.
You need to find the minimal number of moves for transforming $a$ to an array of only odd integers (each element shouldn't be divisible by $2$ ).
For example, if $a=[6,8,12,6,3,12]$ and you choose $c=6$ , and $a$ is transformed into $a=[3,8,12,3,3,12]$ after the move.
You need to find the minimal number of moves for transforming $a$ to an array of only odd integers (each element shouldn't be divisible by $2$ ).
输入格式
The first line of the input contains one integer $t$ ( $1 \le t \le 10^4$ ) — the number of test cases in the input. Then $t$ test cases follow.
The first line of a test case contains $n$ ( $1 \le n \le 2\cdot10^5$ ) — the number of integers in the sequence $a$ . The second line contains positive integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 10^9$ ).
The sum of $n$ for all test cases in the input doesn't exceed $2\cdot10^5$ .
The first line of a test case contains $n$ ( $1 \le n \le 2\cdot10^5$ ) — the number of integers in the sequence $a$ . The second line contains positive integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 10^9$ ).
The sum of $n$ for all test cases in the input doesn't exceed $2\cdot10^5$ .
输出格式
For $t$ test cases print the answers in the order of test cases in the input. The answer for the test case is the minimal number of moves needed to make all numbers in the test case odd (i.e. not divisible by $2$ ).
输入输出样例
输入 #1
4 6 40 6 40 3 20 1 1 1024 4 2 4 8 16 3 3 1 7
输出 #1
4 10 4 0
In the first test case of the example, the optimal sequence of moves can be as follows:
- before making moves $a=[40, 6, 40, 3, 20, 1]$ ;
- choose $c=6$ ;
- now $a=[40, 3, 40, 3, 20, 1]$ ;
- choose $c=40$ ;
- now $a=[20, 3, 20, 3, 20, 1]$ ;
- choose $c=20$ ;
- now $a=[10, 3, 10, 3, 10, 1]$ ;
- choose $c=10$ ;
- now $a=[5, 3, 5, 3, 5, 1]$ — all numbers are odd.
Thus, all numbers became odd after $4$ moves. In $3$ or fewer moves, you cannot make them all odd.
- before making moves $a=[40, 6, 40, 3, 20, 1]$ ;
- choose $c=6$ ;
- now $a=[40, 3, 40, 3, 20, 1]$ ;
- choose $c=40$ ;
- now $a=[20, 3, 20, 3, 20, 1]$ ;
- choose $c=20$ ;
- now $a=[10, 3, 10, 3, 10, 1]$ ;
- choose $c=10$ ;
- now $a=[5, 3, 5, 3, 5, 1]$ — all numbers are odd.
Thus, all numbers became odd after $4$ moves. In $3$ or fewer moves, you cannot make them all odd.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted