A15300 | Deducing Sortability
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Let's say Pak Chanek has an array $A$ consisting of $N$ positive integers. Pak Chanek will do a number of operations. In each operation, Pak Chanek will do the following:
1. Choose an index $p$ ( $1 \leq p \leq N$ ).
2. Let $c$ be the number of operations that have been done on index $p$ before this operation.
3. Decrease the value of $A_p$ by $2^c$ .
4. Multiply the value of $A_p$ by $2$ .
After each operation, all elements of $A$ must be positive integers.
An array $A$ is said to be sortable if and only if Pak Chanek can do zero or more operations so that $A_1 < A_2 < A_3 < A_4 < \ldots < A_N$ .
Pak Chanek must find an array $A$ that is sortable with length $N$ such that $A_1 + A_2 + A_3 + A_4 + \ldots + A_N$ is the minimum possible. If there are more than one possibilities, Pak Chanek must choose the array that is lexicographically minimum among them.
Pak Chanek must solve the following things:
- Pak Chanek must print the value of $A_1 + A_2 + A_3 + A_4 + \ldots + A_N$ for that array.
- $Q$ questions will be given. For the $i$ -th question, an integer $P_i$ is given. Pak Chanek must print the value of $A_{P_i}$ .
Help Pak Chanek solve the problem.
Note: an array $B$ of size $N$ is said to be lexicographically smaller than an array $C$ that is also of size $N$ if and only if there exists an index $i$ such that $B_i < C_i$ and for each $j < i$ , $B_j = C_j$ .
1. Choose an index $p$ ( $1 \leq p \leq N$ ).
2. Let $c$ be the number of operations that have been done on index $p$ before this operation.
3. Decrease the value of $A_p$ by $2^c$ .
4. Multiply the value of $A_p$ by $2$ .
After each operation, all elements of $A$ must be positive integers.
An array $A$ is said to be sortable if and only if Pak Chanek can do zero or more operations so that $A_1 < A_2 < A_3 < A_4 < \ldots < A_N$ .
Pak Chanek must find an array $A$ that is sortable with length $N$ such that $A_1 + A_2 + A_3 + A_4 + \ldots + A_N$ is the minimum possible. If there are more than one possibilities, Pak Chanek must choose the array that is lexicographically minimum among them.
Pak Chanek must solve the following things:
- Pak Chanek must print the value of $A_1 + A_2 + A_3 + A_4 + \ldots + A_N$ for that array.
- $Q$ questions will be given. For the $i$ -th question, an integer $P_i$ is given. Pak Chanek must print the value of $A_{P_i}$ .
Help Pak Chanek solve the problem.
Note: an array $B$ of size $N$ is said to be lexicographically smaller than an array $C$ that is also of size $N$ if and only if there exists an index $i$ such that $B_i < C_i$ and for each $j < i$ , $B_j = C_j$ .
输入格式
The first line contains two integers $N$ and $Q$ ( $1 \leq N \leq 10^9$ , $0 \leq Q \leq \min(N, 10^5)$ ) — the required length of array $A$ and the number of questions.
The $i$ -th of the next $Q$ lines contains a single integer $P_i$ ( $1 \leq P_1 < P_2 < \ldots < P_Q \leq N$ ) — the index asked in the $i$ -th question.
The $i$ -th of the next $Q$ lines contains a single integer $P_i$ ( $1 \leq P_1 < P_2 < \ldots < P_Q \leq N$ ) — the index asked in the $i$ -th question.
输出格式
Print $Q+1$ lines. The $1$ -st line contains an integer representing $A_1 + A_2 + A_3 + A_4 + \ldots + A_N$ . For each $1 \leq i \leq Q$ , the $(i+1)$ -th line contains an integer representing $A_{P_i}$ .
输入输出样例
输入 #1
6 3 1 4 5
输出 #1
17 1 3 4
输入 #2
1 0
输出 #2
1
In the first example, the array $A$ obtained is $[1, 2, 3, 3, 4, 4]$ . We can see that the array is sortable by doing the following operations:
- Choose index $5$ , then $A = [1, 2, 3, 3, 6, 4]$ .
- Choose index $6$ , then $A = [1, 2, 3, 3, 6, 6]$ .
- Choose index $4$ , then $A = [1, 2, 3, 4, 6, 6]$ .
- Choose index $6$ , then $A = [1, 2, 3, 4, 6, 8]$ .
- Choose index $5$ , then $A = [1, 2, 3, 3, 6, 4]$ .
- Choose index $6$ , then $A = [1, 2, 3, 3, 6, 6]$ .
- Choose index $4$ , then $A = [1, 2, 3, 4, 6, 6]$ .
- Choose index $6$ , then $A = [1, 2, 3, 4, 6, 8]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted